Note: This assignment practices working with Data Frame using Base R.
How to do it?:
Open the Rmarkdown file of this assignment (link) in Rstudio.
Right under each question, insert a code chunk (you can use the
hotkey Ctrl + Alt + I to add a code chunk) and code the
solution for the question.
Knit the rmarkdown file (hotkey:
Ctrl + Alt + K) to export an html.
Publish the html file to your Githiub Page.
Submission: Submit the link on Github of the assignment to Canvas under Assignment 3.
| Rank | Age | Name |
|---|---|---|
| 0 | 28 | Tom |
| 1 | 34 | Jack |
| 2 | 29 | Steve |
| 3 | 42 | Ricky |
df = data.frame(Rank = c(0,1,2,3),
Age = c(28, 34, 29, 42),
Name = c("Tom", "Jack", "Steve","Ricky"))
df
## Rank Age Name
## 1 0 28 Tom
## 2 1 34 Jack
## 3 2 29 Steve
## 4 3 42 Ricky
read.csv to import the Covid19 Vaccination data
from WHO: link.df <- read.csv('https://raw.githubusercontent.com/nytimes/covid-19-data/master/us-states.csv')
df
## date state fips cases deaths
## 1 2020-01-21 Washington 53 1 0
## 2 2020-01-22 Washington 53 1 0
## 3 2020-01-23 Washington 53 1 0
## 4 2020-01-24 Illinois 17 1 0
## 5 2020-01-24 Washington 53 1 0
## 6 2020-01-25 California 6 1 0
## 7 2020-01-25 Illinois 17 1 0
## 8 2020-01-25 Washington 53 1 0
## 9 2020-01-26 Arizona 4 1 0
## 10 2020-01-26 California 6 2 0
## 11 2020-01-26 Illinois 17 1 0
## 12 2020-01-26 Washington 53 1 0
## 13 2020-01-27 Arizona 4 1 0
## 14 2020-01-27 California 6 2 0
## 15 2020-01-27 Illinois 17 1 0
## 16 2020-01-27 Washington 53 1 0
## 17 2020-01-28 Arizona 4 1 0
## 18 2020-01-28 California 6 2 0
## 19 2020-01-28 Illinois 17 1 0
## 20 2020-01-28 Washington 53 1 0
## 21 2020-01-29 Arizona 4 1 0
## 22 2020-01-29 California 6 2 0
## 23 2020-01-29 Illinois 17 1 0
## 24 2020-01-29 Washington 53 1 0
## 25 2020-01-30 Arizona 4 1 0
## 26 2020-01-30 California 6 2 0
## 27 2020-01-30 Illinois 17 2 0
## 28 2020-01-30 Washington 53 1 0
## 29 2020-01-31 Arizona 4 1 0
## 30 2020-01-31 California 6 3 0
## 31 2020-01-31 Illinois 17 2 0
## 32 2020-01-31 Washington 53 1 0
## 33 2020-02-01 Arizona 4 1 0
## 34 2020-02-01 California 6 3 0
## 35 2020-02-01 Illinois 17 2 0
## 36 2020-02-01 Massachusetts 25 1 0
## 37 2020-02-01 Washington 53 1 0
## 38 2020-02-02 Arizona 4 1 0
## 39 2020-02-02 California 6 6 0
## 40 2020-02-02 Illinois 17 2 0
## 41 2020-02-02 Massachusetts 25 1 0
## 42 2020-02-02 Washington 53 1 0
## 43 2020-02-03 Arizona 4 1 0
## 44 2020-02-03 California 6 6 0
## 45 2020-02-03 Illinois 17 2 0
## 46 2020-02-03 Massachusetts 25 1 0
## 47 2020-02-03 Washington 53 1 0
## 48 2020-02-04 Arizona 4 1 0
## 49 2020-02-04 California 6 6 0
## 50 2020-02-04 Illinois 17 2 0
## 51 2020-02-04 Massachusetts 25 1 0
## 52 2020-02-04 Washington 53 1 0
## 53 2020-02-05 Arizona 4 1 0
## 54 2020-02-05 California 6 6 0
## 55 2020-02-05 Illinois 17 2 0
## 56 2020-02-05 Massachusetts 25 1 0
## 57 2020-02-05 Washington 53 1 0
## 58 2020-02-05 Wisconsin 55 1 0
## 59 2020-02-06 Arizona 4 1 0
## 60 2020-02-06 California 6 6 0
## 61 2020-02-06 Illinois 17 2 0
## 62 2020-02-06 Massachusetts 25 1 0
## 63 2020-02-06 Washington 53 1 0
## 64 2020-02-06 Wisconsin 55 1 0
## 65 2020-02-07 Arizona 4 1 0
## 66 2020-02-07 California 6 6 0
## 67 2020-02-07 Illinois 17 2 0
## 68 2020-02-07 Massachusetts 25 1 0
## 69 2020-02-07 Washington 53 1 0
## 70 2020-02-07 Wisconsin 55 1 0
## 71 2020-02-08 Arizona 4 1 0
## 72 2020-02-08 California 6 6 0
## 73 2020-02-08 Illinois 17 2 0
## 74 2020-02-08 Massachusetts 25 1 0
## 75 2020-02-08 Washington 53 1 0
## 76 2020-02-08 Wisconsin 55 1 0
## 77 2020-02-09 Arizona 4 1 0
## 78 2020-02-09 California 6 6 0
## 79 2020-02-09 Illinois 17 2 0
## 80 2020-02-09 Massachusetts 25 1 0
## 81 2020-02-09 Washington 53 1 0
## 82 2020-02-09 Wisconsin 55 1 0
## 83 2020-02-10 Arizona 4 1 0
## 84 2020-02-10 California 6 7 0
## 85 2020-02-10 Illinois 17 2 0
## 86 2020-02-10 Massachusetts 25 1 0
## 87 2020-02-10 Washington 53 1 0
## 88 2020-02-10 Wisconsin 55 1 0
## 89 2020-02-11 Arizona 4 1 0
## 90 2020-02-11 California 6 7 0
## 91 2020-02-11 Illinois 17 2 0
## 92 2020-02-11 Massachusetts 25 1 0
## 93 2020-02-11 Washington 53 1 0
## 94 2020-02-11 Wisconsin 55 1 0
## 95 2020-02-12 Arizona 4 1 0
## 96 2020-02-12 California 6 7 0
## 97 2020-02-12 Illinois 17 2 0
## 98 2020-02-12 Massachusetts 25 1 0
## 99 2020-02-12 Texas 48 1 0
## 100 2020-02-12 Washington 53 1 0
## 101 2020-02-12 Wisconsin 55 1 0
## 102 2020-02-13 Arizona 4 1 0
## 103 2020-02-13 California 6 7 0
## 104 2020-02-13 Illinois 17 2 0
## 105 2020-02-13 Massachusetts 25 1 0
## 106 2020-02-13 Texas 48 2 0
## 107 2020-02-13 Washington 53 1 0
## 108 2020-02-13 Wisconsin 55 1 0
## 109 2020-02-14 Arizona 4 1 0
## 110 2020-02-14 California 6 7 0
## 111 2020-02-14 Illinois 17 2 0
## 112 2020-02-14 Massachusetts 25 1 0
## 113 2020-02-14 Texas 48 2 0
## 114 2020-02-14 Washington 53 1 0
## 115 2020-02-14 Wisconsin 55 1 0
## 116 2020-02-15 Arizona 4 1 0
## 117 2020-02-15 California 6 7 0
## 118 2020-02-15 Illinois 17 2 0
## 119 2020-02-15 Massachusetts 25 1 0
## 120 2020-02-15 Texas 48 2 0
## 121 2020-02-15 Washington 53 1 0
## 122 2020-02-15 Wisconsin 55 1 0
## 123 2020-02-16 Arizona 4 1 0
## 124 2020-02-16 California 6 7 0
## 125 2020-02-16 Illinois 17 2 0
## 126 2020-02-16 Massachusetts 25 1 0
## 127 2020-02-16 Texas 48 2 0
## 128 2020-02-16 Washington 53 1 0
## 129 2020-02-16 Wisconsin 55 1 0
## 130 2020-02-17 Arizona 4 1 0
## 131 2020-02-17 California 6 7 0
## 132 2020-02-17 Illinois 17 2 0
## 133 2020-02-17 Massachusetts 25 1 0
## 134 2020-02-17 Nebraska 31 10 0
## 135 2020-02-17 Texas 48 2 0
## 136 2020-02-17 Washington 53 1 0
## 137 2020-02-17 Wisconsin 55 1 0
## 138 2020-02-18 Arizona 4 1 0
## 139 2020-02-18 California 6 7 0
## 140 2020-02-18 Illinois 17 2 0
## 141 2020-02-18 Massachusetts 25 1 0
## 142 2020-02-18 Nebraska 31 10 0
## 143 2020-02-18 Texas 48 2 0
## 144 2020-02-18 Washington 53 1 0
## 145 2020-02-18 Wisconsin 55 1 0
## 146 2020-02-19 Arizona 4 1 0
## 147 2020-02-19 California 6 7 0
## 148 2020-02-19 Illinois 17 2 0
## 149 2020-02-19 Massachusetts 25 1 0
## 150 2020-02-19 Nebraska 31 10 0
## 151 2020-02-19 Texas 48 2 0
## 152 2020-02-19 Washington 53 1 0
## 153 2020-02-19 Wisconsin 55 1 0
## 154 2020-02-20 Arizona 4 1 0
## 155 2020-02-20 California 6 8 0
## 156 2020-02-20 Illinois 17 2 0
## 157 2020-02-20 Massachusetts 25 1 0
## 158 2020-02-20 Nebraska 31 11 0
## 159 2020-02-20 Texas 48 2 0
## 160 2020-02-20 Washington 53 1 0
## 161 2020-02-20 Wisconsin 55 1 0
## 162 2020-02-21 Arizona 4 1 0
## 163 2020-02-21 California 6 9 0
## 164 2020-02-21 Illinois 17 2 0
## 165 2020-02-21 Massachusetts 25 1 0
## 166 2020-02-21 Nebraska 31 11 0
## 167 2020-02-21 Texas 48 4 0
## 168 2020-02-21 Washington 53 1 0
## 169 2020-02-21 Wisconsin 55 1 0
## 170 2020-02-22 Arizona 4 1 0
## 171 2020-02-22 California 6 9 0
## 172 2020-02-22 Illinois 17 2 0
## 173 2020-02-22 Massachusetts 25 1 0
## 174 2020-02-22 Nebraska 31 11 0
## 175 2020-02-22 Texas 48 4 0
## 176 2020-02-22 Washington 53 1 0
## 177 2020-02-22 Wisconsin 55 1 0
## 178 2020-02-23 Arizona 4 1 0
## 179 2020-02-23 California 6 9 0
## 180 2020-02-23 Illinois 17 2 0
## 181 2020-02-23 Massachusetts 25 1 0
## 182 2020-02-23 Nebraska 31 11 0
## 183 2020-02-23 Texas 48 4 0
## 184 2020-02-23 Washington 53 1 0
## 185 2020-02-23 Wisconsin 55 1 0
## 186 2020-02-24 Arizona 4 1 0
## 187 2020-02-24 California 6 11 0
## 188 2020-02-24 Illinois 17 2 0
## 189 2020-02-24 Massachusetts 25 1 0
## 190 2020-02-24 Nebraska 31 12 0
## 191 2020-02-24 Texas 48 10 0
## 192 2020-02-24 Washington 53 5 0
## 193 2020-02-24 Wisconsin 55 1 0
## 194 2020-02-25 Arizona 4 1 0
## 195 2020-02-25 California 6 11 0
## 196 2020-02-25 Illinois 17 2 0
## 197 2020-02-25 Massachusetts 25 1 0
## 198 2020-02-25 Nebraska 31 13 0
## 199 2020-02-25 Texas 48 10 0
## 200 2020-02-25 Utah 49 1 0
## 201 2020-02-25 Washington 53 5 0
## 202 2020-02-25 Wisconsin 55 1 0
## 203 2020-02-26 Arizona 4 1 0
## 204 2020-02-26 California 6 26 0
## 205 2020-02-26 Illinois 17 2 0
## 206 2020-02-26 Massachusetts 25 1 0
## 207 2020-02-26 Nebraska 31 13 0
## 208 2020-02-26 Texas 48 10 0
## 209 2020-02-26 Utah 49 1 0
## 210 2020-02-26 Washington 53 5 0
## 211 2020-02-26 Wisconsin 55 1 0
## 212 2020-02-27 Arizona 4 1 0
## 213 2020-02-27 California 6 26 0
## 214 2020-02-27 Illinois 17 2 0
## 215 2020-02-27 Massachusetts 25 1 0
## 216 2020-02-27 Nebraska 31 13 0
## 217 2020-02-27 Texas 48 10 0
## 218 2020-02-27 Utah 49 1 0
## 219 2020-02-27 Washington 53 5 0
## 220 2020-02-27 Wisconsin 55 1 0
## 221 2020-02-28 Arizona 4 1 0
## 222 2020-02-28 California 6 27 0
## 223 2020-02-28 Illinois 17 2 0
## 224 2020-02-28 Massachusetts 25 1 0
## 225 2020-02-28 Nebraska 31 13 0
## 226 2020-02-28 Oregon 41 1 0
## 227 2020-02-28 Texas 48 11 0
## 228 2020-02-28 Utah 49 1 0
## 229 2020-02-28 Washington 53 7 0
## 230 2020-02-28 Wisconsin 55 1 0
## 231 2020-02-29 Arizona 4 1 0
## 232 2020-02-29 California 6 28 0
## 233 2020-02-29 Illinois 17 3 0
## 234 2020-02-29 Massachusetts 25 1 0
## 235 2020-02-29 Nebraska 31 13 0
## 236 2020-02-29 Oregon 41 1 0
## 237 2020-02-29 Texas 48 11 0
## 238 2020-02-29 Utah 49 1 0
## 239 2020-02-29 Washington 53 10 1
## 240 2020-02-29 Wisconsin 55 1 0
## 241 2020-03-01 Arizona 4 1 0
## 242 2020-03-01 California 6 33 0
## 243 2020-03-01 Florida 12 2 0
## 244 2020-03-01 Illinois 17 3 0
## 245 2020-03-01 Massachusetts 25 1 0
## 246 2020-03-01 Nebraska 31 13 0
## 247 2020-03-01 New York 36 1 0
## 248 2020-03-01 Oregon 41 2 0
## 249 2020-03-01 Rhode Island 44 2 0
## 250 2020-03-01 Texas 48 11 0
## 251 2020-03-01 Utah 49 1 0
## 252 2020-03-01 Washington 53 17 3
## 253 2020-03-01 Wisconsin 55 1 0
## 254 2020-03-02 Arizona 4 1 0
## 255 2020-03-02 California 6 38 0
## 256 2020-03-02 Florida 12 2 0
## 257 2020-03-02 Georgia 13 2 0
## 258 2020-03-02 Illinois 17 4 0
## 259 2020-03-02 Massachusetts 25 2 0
## 260 2020-03-02 Nebraska 31 13 0
## 261 2020-03-02 New Hampshire 33 1 0
## 262 2020-03-02 New York 36 1 0
## 263 2020-03-02 Oregon 41 2 0
## 264 2020-03-02 Rhode Island 44 2 0
## 265 2020-03-02 Texas 48 11 0
## 266 2020-03-02 Utah 49 1 0
## 267 2020-03-02 Washington 53 23 6
## 268 2020-03-02 Wisconsin 55 1 0
## 269 2020-03-03 Arizona 4 2 0
## 270 2020-03-03 California 6 45 0
## 271 2020-03-03 Florida 12 3 0
## 272 2020-03-03 Georgia 13 2 0
## 273 2020-03-03 Illinois 17 4 0
## 274 2020-03-03 Massachusetts 25 2 0
## 275 2020-03-03 Nebraska 31 13 0
## 276 2020-03-03 New Hampshire 33 2 0
## 277 2020-03-03 New York 36 2 0
## 278 2020-03-03 North Carolina 37 1 0
## 279 2020-03-03 Oregon 41 2 0
## 280 2020-03-03 Rhode Island 44 2 0
## 281 2020-03-03 Texas 48 11 0
## 282 2020-03-03 Utah 49 1 0
## 283 2020-03-03 Washington 53 32 10
## 284 2020-03-03 Wisconsin 55 1 0
## 285 2020-03-04 Arizona 4 2 0
## 286 2020-03-04 California 6 55 1
## 287 2020-03-04 Florida 12 3 0
## 288 2020-03-04 Georgia 13 2 0
## 289 2020-03-04 Illinois 17 4 0
## 290 2020-03-04 Massachusetts 25 2 0
## 291 2020-03-04 Nebraska 31 13 0
## 292 2020-03-04 New Hampshire 33 2 0
## 293 2020-03-04 New Jersey 34 1 0
## 294 2020-03-04 New York 36 11 0
## 295 2020-03-04 North Carolina 37 1 0
## 296 2020-03-04 Oregon 41 2 0
## 297 2020-03-04 Rhode Island 44 2 0
## 298 2020-03-04 Texas 48 12 0
## 299 2020-03-04 Utah 49 1 0
## 300 2020-03-04 Washington 53 47 11
## 301 2020-03-04 Wisconsin 55 1 0
## 302 2020-03-05 Arizona 4 2 0
## 303 2020-03-05 California 6 67 1
## 304 2020-03-05 Colorado 8 2 0
## 305 2020-03-05 Florida 12 4 0
## 306 2020-03-05 Georgia 13 2 0
## 307 2020-03-05 Illinois 17 5 0
## 308 2020-03-05 Maryland 24 3 0
## 309 2020-03-05 Massachusetts 25 3 0
## 310 2020-03-05 Nebraska 31 13 0
## 311 2020-03-05 Nevada 32 2 0
## 312 2020-03-05 New Hampshire 33 2 0
## 313 2020-03-05 New Jersey 34 2 0
## 314 2020-03-05 New York 36 22 0
## 315 2020-03-05 North Carolina 37 1 0
## 316 2020-03-05 Oregon 41 2 0
## 317 2020-03-05 Rhode Island 44 2 0
## 318 2020-03-05 Tennessee 47 1 0
## 319 2020-03-05 Texas 48 16 0
## 320 2020-03-05 Utah 49 1 0
## 321 2020-03-05 Washington 53 75 11
## 322 2020-03-05 Wisconsin 55 1 0
## 323 2020-03-06 Arizona 4 3 0
## 324 2020-03-06 California 6 81 1
## 325 2020-03-06 Colorado 8 8 0
## 326 2020-03-06 Florida 12 7 2
## 327 2020-03-06 Georgia 13 3 0
## 328 2020-03-06 Hawaii 15 1 0
## 329 2020-03-06 Illinois 17 6 0
## 330 2020-03-06 Indiana 18 1 0
## 331 2020-03-06 Kentucky 21 1 0
## 332 2020-03-06 Maryland 24 3 0
## 333 2020-03-06 Massachusetts 25 8 0
## 334 2020-03-06 Minnesota 27 1 0
## 335 2020-03-06 Nebraska 31 14 0
## 336 2020-03-06 Nevada 32 2 0
## 337 2020-03-06 New Hampshire 33 2 0
## 338 2020-03-06 New Jersey 34 4 0
## 339 2020-03-06 New York 36 44 0
## 340 2020-03-06 North Carolina 37 2 0
## 341 2020-03-06 Oklahoma 40 1 0
## 342 2020-03-06 Oregon 41 2 0
## 343 2020-03-06 Pennsylvania 42 2 0
## 344 2020-03-06 Rhode Island 44 3 0
## 345 2020-03-06 South Carolina 45 2 0
## 346 2020-03-06 Tennessee 47 1 0
## 347 2020-03-06 Texas 48 19 0
## 348 2020-03-06 Utah 49 3 0
## 349 2020-03-06 Washington 53 86 12
## 350 2020-03-06 Wisconsin 55 1 0
## 351 2020-03-07 Arizona 4 5 0
## 352 2020-03-07 California 6 100 1
## 353 2020-03-07 Colorado 8 8 0
## 354 2020-03-07 District of Columbia 11 1 0
## 355 2020-03-07 Florida 12 12 2
## 356 2020-03-07 Georgia 13 7 0
## 357 2020-03-07 Hawaii 15 1 0
## 358 2020-03-07 Illinois 17 6 0
## 359 2020-03-07 Indiana 18 1 0
## 360 2020-03-07 Kansas 20 1 0
## 361 2020-03-07 Kentucky 21 1 0
## 362 2020-03-07 Maryland 24 3 0
## 363 2020-03-07 Massachusetts 25 13 0
## 364 2020-03-07 Minnesota 27 1 0
## 365 2020-03-07 Missouri 29 1 0
## 366 2020-03-07 Nebraska 31 14 0
## 367 2020-03-07 Nevada 32 2 0
## 368 2020-03-07 New Hampshire 33 4 0
## 369 2020-03-07 New Jersey 34 4 0
## 370 2020-03-07 New York 36 89 0
## 371 2020-03-07 North Carolina 37 2 0
## 372 2020-03-07 Oklahoma 40 1 0
## 373 2020-03-07 Oregon 41 6 0
## 374 2020-03-07 Pennsylvania 42 4 0
## 375 2020-03-07 Rhode Island 44 3 0
## 376 2020-03-07 South Carolina 45 2 0
## 377 2020-03-07 Tennessee 47 1 0
## 378 2020-03-07 Texas 48 19 0
## 379 2020-03-07 Utah 49 3 0
## 380 2020-03-07 Vermont 50 1 0
## 381 2020-03-07 Virginia 51 1 0
## 382 2020-03-07 Washington 53 110 16
## 383 2020-03-07 Wisconsin 55 1 0
## 384 2020-03-08 Arizona 4 5 0
## 385 2020-03-08 California 6 112 1
## 386 2020-03-08 Colorado 8 8 0
## 387 2020-03-08 Connecticut 9 1 0
## 388 2020-03-08 District of Columbia 11 1 0
## 389 2020-03-08 Florida 12 13 2
## 390 2020-03-08 Georgia 13 11 0
## 391 2020-03-08 Hawaii 15 2 0
## 392 2020-03-08 Illinois 17 7 0
## 393 2020-03-08 Indiana 18 2 0
## 394 2020-03-08 Iowa 19 3 0
## 395 2020-03-08 Kansas 20 1 0
## 396 2020-03-08 Kentucky 21 4 0
## 397 2020-03-08 Maryland 24 5 0
## 398 2020-03-08 Massachusetts 25 28 0
## 399 2020-03-08 Minnesota 27 2 0
## 400 2020-03-08 Missouri 29 1 0
## 401 2020-03-08 Nebraska 31 16 0
## 402 2020-03-08 Nevada 32 4 0
## 403 2020-03-08 New Hampshire 33 4 0
## 404 2020-03-08 New Jersey 34 6 0
## 405 2020-03-08 New York 36 106 0
## 406 2020-03-08 North Carolina 37 2 0
## 407 2020-03-08 Oklahoma 40 1 0
## 408 2020-03-08 Oregon 41 13 0
## 409 2020-03-08 Pennsylvania 42 6 0
## 410 2020-03-08 Rhode Island 44 3 0
## 411 2020-03-08 South Carolina 45 6 0
## 412 2020-03-08 Tennessee 47 3 0
## 413 2020-03-08 Texas 48 23 0
## 414 2020-03-08 Utah 49 3 0
## 415 2020-03-08 Vermont 50 1 0
## 416 2020-03-08 Virginia 51 2 0
## 417 2020-03-08 Washington 53 141 19
## 418 2020-03-08 Wisconsin 55 1 0
## 419 2020-03-09 Arizona 4 6 0
## 420 2020-03-09 California 6 172 2
## 421 2020-03-09 Colorado 8 12 0
## 422 2020-03-09 Connecticut 9 2 0
## 423 2020-03-09 District of Columbia 11 4 0
## 424 2020-03-09 Florida 12 14 2
## 425 2020-03-09 Georgia 13 17 0
## 426 2020-03-09 Hawaii 15 2 0
## 427 2020-03-09 Illinois 17 11 0
## 428 2020-03-09 Indiana 18 4 0
## 429 2020-03-09 Iowa 19 8 0
## 430 2020-03-09 Kansas 20 1 0
## 431 2020-03-09 Kentucky 21 5 0
## 432 2020-03-09 Louisiana 22 1 0
## 433 2020-03-09 Maryland 24 6 0
## 434 2020-03-09 Massachusetts 25 41 0
## 435 2020-03-09 Minnesota 27 2 0
## 436 2020-03-09 Missouri 29 1 0
## 437 2020-03-09 Nebraska 31 16 0
## 438 2020-03-09 Nevada 32 4 0
## 439 2020-03-09 New Hampshire 33 4 0
## 440 2020-03-09 New Jersey 34 11 0
## 441 2020-03-09 New York 36 142 0
## 442 2020-03-09 North Carolina 37 7 0
## 443 2020-03-09 Ohio 39 3 0
## 444 2020-03-09 Oklahoma 40 1 0
## 445 2020-03-09 Oregon 41 13 0
## 446 2020-03-09 Pennsylvania 42 10 0
## 447 2020-03-09 Rhode Island 44 3 0
## 448 2020-03-09 South Carolina 45 7 0
## 449 2020-03-09 Tennessee 47 4 0
## 450 2020-03-09 Texas 48 24 0
## 451 2020-03-09 Utah 49 3 0
## 452 2020-03-09 Vermont 50 1 0
## 453 2020-03-09 Virginia 51 5 0
## 454 2020-03-09 Washington 53 179 22
## 455 2020-03-09 Wisconsin 55 2 0
## 456 2020-03-10 Arizona 4 6 0
## 457 2020-03-10 California 6 179 3
## 458 2020-03-10 Colorado 8 17 0
## 459 2020-03-10 Connecticut 9 2 0
## 460 2020-03-10 District of Columbia 11 4 0
## 461 2020-03-10 Florida 12 23 2
## 462 2020-03-10 Georgia 13 22 0
## 463 2020-03-10 Hawaii 15 2 0
## 464 2020-03-10 Illinois 17 19 0
## 465 2020-03-10 Indiana 18 6 0
## 466 2020-03-10 Iowa 19 13 0
## 467 2020-03-10 Kansas 20 1 0
## 468 2020-03-10 Kentucky 21 7 0
## 469 2020-03-10 Louisiana 22 6 0
## 470 2020-03-10 Maryland 24 9 0
## 471 2020-03-10 Massachusetts 25 92 0
## 472 2020-03-10 Michigan 26 2 0
## 473 2020-03-10 Minnesota 27 3 0
## 474 2020-03-10 Missouri 29 1 0
## 475 2020-03-10 Nebraska 31 17 0
## 476 2020-03-10 Nevada 32 4 0
## 477 2020-03-10 New Hampshire 33 5 0
## 478 2020-03-10 New Jersey 34 15 1
## 479 2020-03-10 New York 36 173 0
## 480 2020-03-10 North Carolina 37 7 0
## 481 2020-03-10 Ohio 39 3 0
## 482 2020-03-10 Oklahoma 40 2 0
## 483 2020-03-10 Oregon 41 14 0
## 484 2020-03-10 Pennsylvania 42 12 0
## 485 2020-03-10 Rhode Island 44 5 0
## 486 2020-03-10 South Carolina 45 9 0
## 487 2020-03-10 South Dakota 46 5 1
## 488 2020-03-10 Tennessee 47 7 0
## 489 2020-03-10 Texas 48 31 0
## 490 2020-03-10 Utah 49 4 0
## 491 2020-03-10 Vermont 50 1 0
## 492 2020-03-10 Virginia 51 8 0
## 493 2020-03-10 Washington 53 279 24
## 494 2020-03-10 Wisconsin 55 3 0
## 495 2020-03-11 Arizona 4 9 0
## 496 2020-03-11 Arkansas 5 1 0
## 497 2020-03-11 California 6 202 4
## 498 2020-03-11 Colorado 8 34 0
## 499 2020-03-11 Connecticut 9 3 0
## 500 2020-03-11 Delaware 10 1 0
## 501 2020-03-11 District of Columbia 11 10 0
## 502 2020-03-11 Florida 12 26 2
## 503 2020-03-11 Georgia 13 31 0
## 504 2020-03-11 Hawaii 15 2 0
## 505 2020-03-11 Illinois 17 25 0
## 506 2020-03-11 Indiana 18 11 0
## 507 2020-03-11 Iowa 19 14 0
## 508 2020-03-11 Kansas 20 1 0
## 509 2020-03-11 Kentucky 21 7 0
## 510 2020-03-11 Louisiana 22 13 0
## 511 2020-03-11 Maryland 24 13 0
## 512 2020-03-11 Massachusetts 25 95 0
## 513 2020-03-11 Michigan 26 2 0
## 514 2020-03-11 Minnesota 27 5 0
## 515 2020-03-11 Mississippi 28 1 0
## 516 2020-03-11 Missouri 29 1 0
## 517 2020-03-11 Nebraska 31 23 0
## 518 2020-03-11 Nevada 32 7 0
## 519 2020-03-11 New Hampshire 33 5 0
## 520 2020-03-11 New Jersey 34 23 1
## 521 2020-03-11 New Mexico 35 4 0
## 522 2020-03-11 New York 36 217 0
## 523 2020-03-11 North Carolina 37 8 0
## 524 2020-03-11 North Dakota 38 1 0
## 525 2020-03-11 Ohio 39 4 0
## 526 2020-03-11 Oklahoma 40 2 0
## 527 2020-03-11 Oregon 41 20 0
## 528 2020-03-11 Pennsylvania 42 16 0
## 529 2020-03-11 Rhode Island 44 5 0
## 530 2020-03-11 South Carolina 45 10 0
## 531 2020-03-11 South Dakota 46 8 1
## 532 2020-03-11 Tennessee 47 8 0
## 533 2020-03-11 Texas 48 33 0
## 534 2020-03-11 Utah 49 5 0
## 535 2020-03-11 Vermont 50 2 0
## 536 2020-03-11 Virginia 51 10 0
## 537 2020-03-11 Washington 53 338 29
## 538 2020-03-11 Wisconsin 55 6 0
## 539 2020-03-11 Wyoming 56 1 0
## 540 2020-03-12 Alaska 2 1 0
## 541 2020-03-12 Arizona 4 9 0
## 542 2020-03-12 Arkansas 5 6 0
## 543 2020-03-12 California 6 252 4
## 544 2020-03-12 Colorado 8 49 1
## 545 2020-03-12 Connecticut 9 6 0
## 546 2020-03-12 Delaware 10 4 0
## 547 2020-03-12 District of Columbia 11 10 0
## 548 2020-03-12 Florida 12 46 2
## 549 2020-03-12 Georgia 13 31 1
## 550 2020-03-12 Hawaii 15 2 0
## 551 2020-03-12 Illinois 17 32 0
## 552 2020-03-12 Indiana 18 12 0
## 553 2020-03-12 Iowa 19 16 0
## 554 2020-03-12 Kansas 20 5 1
## 555 2020-03-12 Kentucky 21 11 0
## 556 2020-03-12 Louisiana 22 14 0
## 557 2020-03-12 Maine 23 1 0
## 558 2020-03-12 Maryland 24 13 0
## 559 2020-03-12 Massachusetts 25 108 0
## 560 2020-03-12 Michigan 26 12 0
## 561 2020-03-12 Minnesota 27 9 0
## 562 2020-03-12 Mississippi 28 1 0
## 563 2020-03-12 Missouri 29 2 0
## 564 2020-03-12 Nebraska 31 24 0
## 565 2020-03-12 Nevada 32 11 0
## 566 2020-03-12 New Hampshire 33 6 0
## 567 2020-03-12 New Jersey 34 29 1
## 568 2020-03-12 New Mexico 35 6 0
## 569 2020-03-12 New York 36 326 0
## 570 2020-03-12 North Carolina 37 16 0
## 571 2020-03-12 North Dakota 38 1 0
## 572 2020-03-12 Ohio 39 5 0
## 573 2020-03-12 Oklahoma 40 2 0
## 574 2020-03-12 Oregon 41 30 0
## 575 2020-03-12 Pennsylvania 42 22 0
## 576 2020-03-12 Rhode Island 44 5 0
## 577 2020-03-12 South Carolina 45 12 0
## 578 2020-03-12 South Dakota 46 8 1
## 579 2020-03-12 Tennessee 47 18 0
## 580 2020-03-12 Texas 48 41 0
## 581 2020-03-12 Utah 49 7 0
## 582 2020-03-12 Vermont 50 2 0
## 583 2020-03-12 Virginia 51 17 0
## 584 2020-03-12 Washington 53 419 32
## 585 2020-03-12 Wisconsin 55 8 0
## 586 2020-03-12 Wyoming 56 1 0
## 587 2020-03-13 Alabama 1 6 0
## 588 2020-03-13 Alaska 2 1 0
## 589 2020-03-13 Arizona 4 9 0
## 590 2020-03-13 Arkansas 5 7 0
## 591 2020-03-13 California 6 320 5
## 592 2020-03-13 Colorado 8 78 2
## 593 2020-03-13 Connecticut 9 11 0
## 594 2020-03-13 Delaware 10 4 0
## 595 2020-03-13 District of Columbia 11 10 0
## 596 2020-03-13 Florida 12 70 2
## 597 2020-03-13 Georgia 13 41 1
## 598 2020-03-13 Hawaii 15 2 0
## 599 2020-03-13 Idaho 16 1 0
## 600 2020-03-13 Illinois 17 46 0
## 601 2020-03-13 Indiana 18 12 0
## 602 2020-03-13 Iowa 19 17 0
## 603 2020-03-13 Kansas 20 6 1
## 604 2020-03-13 Kentucky 21 11 0
## 605 2020-03-13 Louisiana 22 36 0
## 606 2020-03-13 Maine 23 2 0
## 607 2020-03-13 Maryland 24 18 0
## 608 2020-03-13 Massachusetts 25 123 0
## 609 2020-03-13 Michigan 26 25 0
## 610 2020-03-13 Minnesota 27 14 0
## 611 2020-03-13 Mississippi 28 6 0
## 612 2020-03-13 Missouri 29 4 0
## 613 2020-03-13 Montana 30 4 0
## 614 2020-03-13 Nebraska 31 27 0
## 615 2020-03-13 Nevada 32 19 0
## 616 2020-03-13 New Hampshire 33 7 0
## 617 2020-03-13 New Jersey 34 50 1
## 618 2020-03-13 New Mexico 35 10 0
## 619 2020-03-13 New York 36 421 0
## 620 2020-03-13 North Carolina 37 18 0
## 621 2020-03-13 North Dakota 38 1 0
## 622 2020-03-13 Ohio 39 13 0
## 623 2020-03-13 Oklahoma 40 3 0
## 624 2020-03-13 Oregon 41 30 0
## 625 2020-03-13 Pennsylvania 42 41 0
## 626 2020-03-13 Puerto Rico 72 3 0
## 627 2020-03-13 Rhode Island 44 20 0
## 628 2020-03-13 South Carolina 45 13 0
## 629 2020-03-13 South Dakota 46 9 1
## 630 2020-03-13 Tennessee 47 26 0
## 631 2020-03-13 Texas 48 58 0
## 632 2020-03-13 Utah 49 7 0
## 633 2020-03-13 Vermont 50 2 0
## 634 2020-03-13 Virginia 51 30 0
## 635 2020-03-13 Washington 53 511 37
## 636 2020-03-13 Wisconsin 55 19 0
## 637 2020-03-13 Wyoming 56 2 0
## 638 2020-03-14 Alabama 1 12 0
## 639 2020-03-14 Alaska 2 1 0
## 640 2020-03-14 Arizona 4 12 0
## 641 2020-03-14 Arkansas 5 9 0
## 642 2020-03-14 California 6 381 5
## 643 2020-03-14 Colorado 8 103 2
## 644 2020-03-14 Connecticut 9 20 0
## 645 2020-03-14 Delaware 10 4 0
## 646 2020-03-14 District of Columbia 11 16 0
## 647 2020-03-14 Florida 12 70 3
## 648 2020-03-14 Georgia 13 65 1
## 649 2020-03-14 Hawaii 15 4 0
## 650 2020-03-14 Idaho 16 5 0
## 651 2020-03-14 Illinois 17 66 0
## 652 2020-03-14 Indiana 18 15 0
## 653 2020-03-14 Iowa 19 18 0
## 654 2020-03-14 Kansas 20 8 1
## 655 2020-03-14 Kentucky 21 18 0
## 656 2020-03-14 Louisiana 22 77 1
## 657 2020-03-14 Maine 23 3 0
## 658 2020-03-14 Maryland 24 27 0
## 659 2020-03-14 Massachusetts 25 138 0
## 660 2020-03-14 Michigan 26 33 0
## 661 2020-03-14 Minnesota 27 21 0
## 662 2020-03-14 Mississippi 28 6 0
## 663 2020-03-14 Missouri 29 5 0
## 664 2020-03-14 Montana 30 6 0
## 665 2020-03-14 Nebraska 31 29 0
## 666 2020-03-14 Nevada 32 21 0
## 667 2020-03-14 New Hampshire 33 7 0
## 668 2020-03-14 New Jersey 34 75 2
## 669 2020-03-14 New Mexico 35 13 0
## 670 2020-03-14 New York 36 610 2
## 671 2020-03-14 North Carolina 37 25 0
## 672 2020-03-14 North Dakota 38 1 0
## 673 2020-03-14 Ohio 39 26 0
## 674 2020-03-14 Oklahoma 40 4 0
## 675 2020-03-14 Oregon 41 36 1
## 676 2020-03-14 Pennsylvania 42 47 0
## 677 2020-03-14 Puerto Rico 72 4 0
## 678 2020-03-14 Rhode Island 44 20 0
## 679 2020-03-14 South Carolina 45 19 0
## 680 2020-03-14 South Dakota 46 9 1
## 681 2020-03-14 Tennessee 47 32 0
## 682 2020-03-14 Texas 48 69 0
## 683 2020-03-14 Utah 49 21 0
## 684 2020-03-14 Vermont 50 5 0
## 685 2020-03-14 Virgin Islands 78 1 0
## 686 2020-03-14 Virginia 51 42 1
## 687 2020-03-14 Washington 53 609 40
## 688 2020-03-14 Wisconsin 55 27 0
## 689 2020-03-14 Wyoming 56 3 0
## 690 2020-03-15 Alabama 1 23 0
## 691 2020-03-15 Alaska 2 1 0
## 692 2020-03-15 Arizona 4 13 0
## 693 2020-03-15 Arkansas 5 16 0
## 694 2020-03-15 California 6 478 6
## 695 2020-03-15 Colorado 8 136 2
## 696 2020-03-15 Connecticut 9 26 0
## 697 2020-03-15 Delaware 10 7 0
## 698 2020-03-15 District of Columbia 11 17 0
## 699 2020-03-15 Florida 12 109 3
## 700 2020-03-15 Georgia 13 97 1
## 701 2020-03-15 Guam 66 3 0
## 702 2020-03-15 Hawaii 15 7 0
## 703 2020-03-15 Idaho 16 5 0
## 704 2020-03-15 Illinois 17 94 0
## 705 2020-03-15 Indiana 18 19 0
## 706 2020-03-15 Iowa 19 22 0
## 707 2020-03-15 Kansas 20 9 1
## 708 2020-03-15 Kentucky 21 21 0
## 709 2020-03-15 Louisiana 22 103 2
## 710 2020-03-15 Maine 23 12 0
## 711 2020-03-15 Maryland 24 32 0
## 712 2020-03-15 Massachusetts 25 164 0
## 713 2020-03-15 Michigan 26 53 0
## 714 2020-03-15 Minnesota 27 35 0
## 715 2020-03-15 Mississippi 28 10 0
## 716 2020-03-15 Missouri 29 5 0
## 717 2020-03-15 Montana 30 6 0
## 718 2020-03-15 Nebraska 31 31 0
## 719 2020-03-15 Nevada 32 26 0
## 720 2020-03-15 New Hampshire 33 13 0
## 721 2020-03-15 New Jersey 34 98 2
## 722 2020-03-15 New Mexico 35 17 0
## 723 2020-03-15 New York 36 732 6
## 724 2020-03-15 North Carolina 37 32 0
## 725 2020-03-15 North Dakota 38 1 0
## 726 2020-03-15 Ohio 39 37 0
## 727 2020-03-15 Oklahoma 40 8 0
## 728 2020-03-15 Oregon 41 39 1
## 729 2020-03-15 Pennsylvania 42 68 0
## 730 2020-03-15 Puerto Rico 72 5 0
## 731 2020-03-15 Rhode Island 44 20 0
## 732 2020-03-15 South Carolina 45 28 0
## 733 2020-03-15 South Dakota 46 9 1
## 734 2020-03-15 Tennessee 47 39 0
## 735 2020-03-15 Texas 48 80 0
## 736 2020-03-15 Utah 49 29 0
## 737 2020-03-15 Vermont 50 8 0
## 738 2020-03-15 Virgin Islands 78 1 0
## 739 2020-03-15 Virginia 51 45 1
## 740 2020-03-15 Washington 53 675 42
## 741 2020-03-15 Wisconsin 55 33 0
## 742 2020-03-15 Wyoming 56 3 0
## 743 2020-03-16 Alabama 1 29 0
## 744 2020-03-16 Alaska 2 3 0
## 745 2020-03-16 Arizona 4 18 0
## 746 2020-03-16 Arkansas 5 22 0
## 747 2020-03-16 California 6 588 11
## 748 2020-03-16 Colorado 8 161 2
## 749 2020-03-16 Connecticut 9 41 0
## 750 2020-03-16 Delaware 10 8 0
## 751 2020-03-16 District of Columbia 11 22 0
## 752 2020-03-16 Florida 12 141 4
## 753 2020-03-16 Georgia 13 118 1
## 754 2020-03-16 Guam 66 3 0
## 755 2020-03-16 Hawaii 15 10 0
## 756 2020-03-16 Idaho 16 5 0
## 757 2020-03-16 Illinois 17 104 0
## 758 2020-03-16 Indiana 18 24 1
## 759 2020-03-16 Iowa 19 22 0
## 760 2020-03-16 Kansas 20 11 1
## 761 2020-03-16 Kentucky 21 22 1
## 762 2020-03-16 Louisiana 22 137 3
## 763 2020-03-16 Maine 23 17 0
## 764 2020-03-16 Maryland 24 39 0
## 765 2020-03-16 Massachusetts 25 197 0
## 766 2020-03-16 Michigan 26 54 0
## 767 2020-03-16 Minnesota 27 54 0
## 768 2020-03-16 Mississippi 28 12 0
## 769 2020-03-16 Missouri 29 9 0
## 770 2020-03-16 Montana 30 8 0
## 771 2020-03-16 Nebraska 31 33 0
## 772 2020-03-16 Nevada 32 45 1
## 773 2020-03-16 New Hampshire 33 17 0
## 774 2020-03-16 New Jersey 34 176 3
## 775 2020-03-16 New Mexico 35 21 0
## 776 2020-03-16 New York 36 950 10
## 777 2020-03-16 North Carolina 37 34 0
## 778 2020-03-16 North Dakota 38 1 0
## 779 2020-03-16 Ohio 39 50 0
## 780 2020-03-16 Oklahoma 40 10 0
## 781 2020-03-16 Oregon 41 46 1
## 782 2020-03-16 Pennsylvania 42 81 0
## 783 2020-03-16 Puerto Rico 72 5 0
## 784 2020-03-16 Rhode Island 44 21 0
## 785 2020-03-16 South Carolina 45 33 1
## 786 2020-03-16 South Dakota 46 10 1
## 787 2020-03-16 Tennessee 47 52 0
## 788 2020-03-16 Texas 48 87 1
## 789 2020-03-16 Utah 49 40 0
## 790 2020-03-16 Vermont 50 12 0
## 791 2020-03-16 Virgin Islands 78 2 0
## 792 2020-03-16 Virginia 51 51 1
## 793 2020-03-16 Washington 53 794 48
## 794 2020-03-16 Wisconsin 55 47 0
## 795 2020-03-16 Wyoming 56 10 0
## 796 2020-03-17 Alabama 1 39 0
## 797 2020-03-17 Alaska 2 6 0
## 798 2020-03-17 Arizona 4 20 0
## 799 2020-03-17 Arkansas 5 22 0
## 800 2020-03-17 California 6 732 14
## 801 2020-03-17 Colorado 8 183 3
## 802 2020-03-17 Connecticut 9 68 0
## 803 2020-03-17 Delaware 10 16 0
## 804 2020-03-17 District of Columbia 11 31 0
## 805 2020-03-17 Florida 12 210 6
## 806 2020-03-17 Georgia 13 142 1
## 807 2020-03-17 Guam 66 3 0
## 808 2020-03-17 Hawaii 15 14 0
## 809 2020-03-17 Idaho 16 9 0
## 810 2020-03-17 Illinois 17 159 1
## 811 2020-03-17 Indiana 18 30 2
## 812 2020-03-17 Iowa 19 29 0
## 813 2020-03-17 Kansas 20 17 1
## 814 2020-03-17 Kentucky 21 26 1
## 815 2020-03-17 Louisiana 22 196 5
## 816 2020-03-17 Maine 23 32 0
## 817 2020-03-17 Maryland 24 57 0
## 818 2020-03-17 Massachusetts 25 218 0
## 819 2020-03-17 Michigan 26 65 0
## 820 2020-03-17 Minnesota 27 60 0
## 821 2020-03-17 Mississippi 28 21 0
## 822 2020-03-17 Missouri 29 16 0
## 823 2020-03-17 Montana 30 8 0
## 824 2020-03-17 Nebraska 31 36 0
## 825 2020-03-17 Nevada 32 55 1
## 826 2020-03-17 New Hampshire 33 26 0
## 827 2020-03-17 New Jersey 34 268 3
## 828 2020-03-17 New Mexico 35 23 0
## 829 2020-03-17 New York 36 1375 18
## 830 2020-03-17 North Carolina 37 42 0
## 831 2020-03-17 North Dakota 38 5 0
## 832 2020-03-17 Ohio 39 67 0
## 833 2020-03-17 Oklahoma 40 18 0
## 834 2020-03-17 Oregon 41 66 2
## 835 2020-03-17 Pennsylvania 42 101 0
## 836 2020-03-17 Puerto Rico 72 5 0
## 837 2020-03-17 Rhode Island 44 23 0
## 838 2020-03-17 South Carolina 45 47 1
## 839 2020-03-17 South Dakota 46 11 1
## 840 2020-03-17 Tennessee 47 73 0
## 841 2020-03-17 Texas 48 106 1
## 842 2020-03-17 Utah 49 51 0
## 843 2020-03-17 Vermont 50 14 0
## 844 2020-03-17 Virgin Islands 78 2 0
## 845 2020-03-17 Virginia 51 67 2
## 846 2020-03-17 Washington 53 908 54
## 847 2020-03-17 West Virginia 54 1 0
## 848 2020-03-17 Wisconsin 55 72 0
## 849 2020-03-17 Wyoming 56 15 0
## 850 2020-03-18 Alabama 1 51 0
## 851 2020-03-18 Alaska 2 9 0
## 852 2020-03-18 Arizona 4 28 0
## 853 2020-03-18 Arkansas 5 33 0
## 854 2020-03-18 California 6 893 17
## 855 2020-03-18 Colorado 8 216 3
## 856 2020-03-18 Connecticut 9 96 1
## 857 2020-03-18 Delaware 10 26 0
## 858 2020-03-18 District of Columbia 11 36 0
## 859 2020-03-18 Florida 12 326 7
## 860 2020-03-18 Georgia 13 193 3
## 861 2020-03-18 Guam 66 8 0
## 862 2020-03-18 Hawaii 15 16 0
## 863 2020-03-18 Idaho 16 11 0
## 864 2020-03-18 Illinois 17 286 1
## 865 2020-03-18 Indiana 18 39 2
## 866 2020-03-18 Iowa 19 38 0
## 867 2020-03-18 Kansas 20 22 1
## 868 2020-03-18 Kentucky 21 35 1
## 869 2020-03-18 Louisiana 22 280 7
## 870 2020-03-18 Maine 23 43 0
## 871 2020-03-18 Maryland 24 85 1
## 872 2020-03-18 Massachusetts 25 256 0
## 873 2020-03-18 Michigan 26 80 1
## 874 2020-03-18 Minnesota 27 77 0
## 875 2020-03-18 Mississippi 28 34 0
## 876 2020-03-18 Missouri 29 21 1
## 877 2020-03-18 Montana 30 12 0
## 878 2020-03-18 Nebraska 31 43 0
## 879 2020-03-18 Nevada 32 82 1
## 880 2020-03-18 New Hampshire 33 39 0
## 881 2020-03-18 New Jersey 34 427 5
## 882 2020-03-18 New Mexico 35 28 0
## 883 2020-03-18 New York 36 2387 32
## 884 2020-03-18 North Carolina 37 66 0
## 885 2020-03-18 North Dakota 38 7 0
## 886 2020-03-18 Ohio 39 90 0
## 887 2020-03-18 Oklahoma 40 29 0
## 888 2020-03-18 Oregon 41 74 3
## 889 2020-03-18 Pennsylvania 42 139 1
## 890 2020-03-18 Puerto Rico 72 5 0
## 891 2020-03-18 Rhode Island 44 33 0
## 892 2020-03-18 South Carolina 45 60 1
## 893 2020-03-18 South Dakota 46 11 1
## 894 2020-03-18 Tennessee 47 98 0
## 895 2020-03-18 Texas 48 166 2
## 896 2020-03-18 Utah 49 65 0
## 897 2020-03-18 Vermont 50 19 0
## 898 2020-03-18 Virgin Islands 78 3 0
## 899 2020-03-18 Virginia 51 78 2
## 900 2020-03-18 Washington 53 1026 68
## 901 2020-03-18 West Virginia 54 2 0
## 902 2020-03-18 Wisconsin 55 106 0
## 903 2020-03-18 Wyoming 56 17 0
## 904 2020-03-19 Alabama 1 78 0
## 905 2020-03-19 Alaska 2 12 0
## 906 2020-03-19 Arizona 4 47 0
## 907 2020-03-19 Arkansas 5 62 0
## 908 2020-03-19 California 6 1067 19
## 909 2020-03-19 Colorado 8 278 5
## 910 2020-03-19 Connecticut 9 159 4
## 911 2020-03-19 Delaware 10 30 0
## 912 2020-03-19 District of Columbia 11 39 0
## 913 2020-03-19 Florida 12 434 8
## 914 2020-03-19 Georgia 13 282 10
## 915 2020-03-19 Guam 66 12 0
## 916 2020-03-19 Hawaii 15 26 0
## 917 2020-03-19 Idaho 16 23 0
## 918 2020-03-19 Illinois 17 420 4
## 919 2020-03-19 Indiana 18 56 2
## 920 2020-03-19 Iowa 19 44 0
## 921 2020-03-19 Kansas 20 35 1
## 922 2020-03-19 Kentucky 21 47 2
## 923 2020-03-19 Louisiana 22 392 10
## 924 2020-03-19 Maine 23 52 0
## 925 2020-03-19 Maryland 24 108 1
## 926 2020-03-19 Massachusetts 25 328 0
## 927 2020-03-19 Michigan 26 334 3
## 928 2020-03-19 Minnesota 27 89 0
## 929 2020-03-19 Mississippi 28 50 1
## 930 2020-03-19 Missouri 29 35 1
## 931 2020-03-19 Montana 30 19 0
## 932 2020-03-19 Nebraska 31 47 0
## 933 2020-03-19 Nevada 32 99 1
## 934 2020-03-19 New Hampshire 33 44 0
## 935 2020-03-19 New Jersey 34 735 9
## 936 2020-03-19 New Mexico 35 35 0
## 937 2020-03-19 New York 36 4161 39
## 938 2020-03-19 North Carolina 37 104 0
## 939 2020-03-19 North Dakota 38 19 0
## 940 2020-03-19 Ohio 39 120 0
## 941 2020-03-19 Oklahoma 40 44 1
## 942 2020-03-19 Oregon 41 87 3
## 943 2020-03-19 Pennsylvania 42 187 1
## 944 2020-03-19 Puerto Rico 72 6 0
## 945 2020-03-19 Rhode Island 44 44 0
## 946 2020-03-19 South Carolina 45 81 1
## 947 2020-03-19 South Dakota 46 14 1
## 948 2020-03-19 Tennessee 47 155 0
## 949 2020-03-19 Texas 48 248 4
## 950 2020-03-19 Utah 49 80 0
## 951 2020-03-19 Vermont 50 22 2
## 952 2020-03-19 Virgin Islands 78 3 0
## 953 2020-03-19 Virginia 51 94 2
## 954 2020-03-19 Washington 53 1228 75
## 955 2020-03-19 West Virginia 54 5 0
## 956 2020-03-19 Wisconsin 55 155 2
## 957 2020-03-19 Wyoming 56 18 0
## 958 2020-03-20 Alabama 1 106 0
## 959 2020-03-20 Alaska 2 14 0
## 960 2020-03-20 Arizona 4 70 1
## 961 2020-03-20 Arkansas 5 100 0
## 962 2020-03-20 California 6 1283 24
## 963 2020-03-20 Colorado 8 364 5
## 964 2020-03-20 Connecticut 9 194 4
## 965 2020-03-20 Delaware 10 39 0
## 966 2020-03-20 District of Columbia 11 71 0
## 967 2020-03-20 Florida 12 564 9
## 968 2020-03-20 Georgia 13 482 14
## 969 2020-03-20 Guam 66 14 0
## 970 2020-03-20 Hawaii 15 37 0
## 971 2020-03-20 Idaho 16 31 0
## 972 2020-03-20 Illinois 17 583 5
## 973 2020-03-20 Indiana 18 81 5
## 974 2020-03-20 Iowa 19 45 0
## 975 2020-03-20 Kansas 20 49 1
## 976 2020-03-20 Kentucky 21 63 2
## 977 2020-03-20 Louisiana 22 537 10
## 978 2020-03-20 Maine 23 57 0
## 979 2020-03-20 Maryland 24 150 2
## 980 2020-03-20 Massachusetts 25 413 1
## 981 2020-03-20 Michigan 26 548 4
## 982 2020-03-20 Minnesota 27 115 0
## 983 2020-03-20 Mississippi 28 80 1
## 984 2020-03-20 Missouri 29 73 3
## 985 2020-03-20 Montana 30 19 0
## 986 2020-03-20 Nebraska 31 53 0
## 987 2020-03-20 Nevada 32 165 2
## 988 2020-03-20 New Hampshire 33 55 0
## 989 2020-03-20 New Jersey 34 896 11
## 990 2020-03-20 New Mexico 35 43 0
## 991 2020-03-20 New York 36 7113 68
## 992 2020-03-20 North Carolina 37 144 0
## 993 2020-03-20 North Dakota 38 27 0
## 994 2020-03-20 Ohio 39 169 1
## 995 2020-03-20 Oklahoma 40 49 1
## 996 2020-03-20 Oregon 41 114 3
## 997 2020-03-20 Pennsylvania 42 269 1
## 998 2020-03-20 Puerto Rico 72 14 0
## 999 2020-03-20 Rhode Island 44 44 0
## 1000 2020-03-20 South Carolina 45 126 3
## 1001 2020-03-20 South Dakota 46 14 1
## 1002 2020-03-20 Tennessee 47 237 0
## 1003 2020-03-20 Texas 48 386 5
## 1004 2020-03-20 Utah 49 112 0
## 1005 2020-03-20 Vermont 50 29 2
## 1006 2020-03-20 Virgin Islands 78 6 0
## 1007 2020-03-20 Virginia 51 115 2
## 1008 2020-03-20 Washington 53 1404 83
## 1009 2020-03-20 West Virginia 54 8 0
## 1010 2020-03-20 Wisconsin 55 216 3
## 1011 2020-03-20 Wyoming 56 22 0
## 1012 2020-03-21 Alabama 1 131 0
## 1013 2020-03-21 Alaska 2 21 0
## 1014 2020-03-21 Arizona 4 104 1
## 1015 2020-03-21 Arkansas 5 118 0
## 1016 2020-03-21 California 6 1544 28
## 1017 2020-03-21 Colorado 8 475 6
## 1018 2020-03-21 Connecticut 9 223 5
## 1019 2020-03-21 Delaware 10 45 0
## 1020 2020-03-21 District of Columbia 11 77 1
## 1021 2020-03-21 Florida 12 764 11
## 1022 2020-03-21 Georgia 13 552 20
## 1023 2020-03-21 Guam 66 15 0
## 1024 2020-03-21 Hawaii 15 48 0
## 1025 2020-03-21 Idaho 16 42 0
## 1026 2020-03-21 Illinois 17 751 6
## 1027 2020-03-21 Indiana 18 128 6
## 1028 2020-03-21 Iowa 19 68 0
## 1029 2020-03-21 Kansas 20 57 2
## 1030 2020-03-21 Kentucky 21 84 3
## 1031 2020-03-21 Louisiana 22 763 16
## 1032 2020-03-21 Maine 23 70 0
## 1033 2020-03-21 Maryland 24 195 3
## 1034 2020-03-21 Massachusetts 25 525 2
## 1035 2020-03-21 Michigan 26 787 6
## 1036 2020-03-21 Minnesota 27 138 1
## 1037 2020-03-21 Mississippi 28 140 1
## 1038 2020-03-21 Missouri 29 93 3
## 1039 2020-03-21 Montana 30 29 0
## 1040 2020-03-21 Nebraska 31 61 0
## 1041 2020-03-21 Nevada 32 165 2
## 1042 2020-03-21 New Hampshire 33 65 0
## 1043 2020-03-21 New Jersey 34 1336 16
## 1044 2020-03-21 New Mexico 35 57 0
## 1045 2020-03-21 New York 36 10371 95
## 1046 2020-03-21 North Carolina 37 184 0
## 1047 2020-03-21 North Dakota 38 28 0
## 1048 2020-03-21 Ohio 39 247 3
## 1049 2020-03-21 Oklahoma 40 53 1
## 1050 2020-03-21 Oregon 41 137 4
## 1051 2020-03-21 Pennsylvania 42 388 2
## 1052 2020-03-21 Puerto Rico 72 21 1
## 1053 2020-03-21 Rhode Island 44 66 0
## 1054 2020-03-21 South Carolina 45 172 3
## 1055 2020-03-21 South Dakota 46 14 1
## 1056 2020-03-21 Tennessee 47 312 2
## 1057 2020-03-21 Texas 48 547 5
## 1058 2020-03-21 Utah 49 138 0
## 1059 2020-03-21 Vermont 50 49 2
## 1060 2020-03-21 Virgin Islands 78 6 0
## 1061 2020-03-21 Virginia 51 152 3
## 1062 2020-03-21 Washington 53 1655 95
## 1063 2020-03-21 West Virginia 54 12 0
## 1064 2020-03-21 Wisconsin 55 281 4
## 1065 2020-03-21 Wyoming 56 24 0
## 1066 2020-03-22 Alabama 1 157 0
## 1067 2020-03-22 Alaska 2 22 0
## 1068 2020-03-22 Arizona 4 153 2
## 1069 2020-03-22 Arkansas 5 165 0
## 1070 2020-03-22 California 6 1851 35
## 1071 2020-03-22 Colorado 8 591 7
## 1072 2020-03-22 Connecticut 9 327 8
## 1073 2020-03-22 Delaware 10 56 0
## 1074 2020-03-22 District of Columbia 11 98 1
## 1075 2020-03-22 Florida 12 1000 13
## 1076 2020-03-22 Georgia 13 620 25
## 1077 2020-03-22 Guam 66 27 1
## 1078 2020-03-22 Hawaii 15 56 0
## 1079 2020-03-22 Idaho 16 47 0
## 1080 2020-03-22 Illinois 17 1047 9
## 1081 2020-03-22 Indiana 18 204 9
## 1082 2020-03-22 Iowa 19 90 0
## 1083 2020-03-22 Kansas 20 66 2
## 1084 2020-03-22 Kentucky 21 103 3
## 1085 2020-03-22 Louisiana 22 837 20
## 1086 2020-03-22 Maine 23 89 0
## 1087 2020-03-22 Maryland 24 245 3
## 1088 2020-03-22 Massachusetts 25 646 5
## 1089 2020-03-22 Michigan 26 1033 9
## 1090 2020-03-22 Minnesota 27 171 1
## 1091 2020-03-22 Mississippi 28 207 1
## 1092 2020-03-22 Missouri 29 130 3
## 1093 2020-03-22 Montana 30 34 0
## 1094 2020-03-22 Nebraska 31 62 0
## 1095 2020-03-22 Nevada 32 190 2
## 1096 2020-03-22 New Hampshire 33 78 0
## 1097 2020-03-22 New Jersey 34 1914 20
## 1098 2020-03-22 New Mexico 35 65 0
## 1099 2020-03-22 New York 36 15188 142
## 1100 2020-03-22 North Carolina 37 269 0
## 1101 2020-03-22 North Dakota 38 30 0
## 1102 2020-03-22 Ohio 39 351 3
## 1103 2020-03-22 Oklahoma 40 67 2
## 1104 2020-03-22 Oregon 41 161 5
## 1105 2020-03-22 Pennsylvania 42 504 3
## 1106 2020-03-22 Puerto Rico 72 23 1
## 1107 2020-03-22 Rhode Island 44 83 0
## 1108 2020-03-22 South Carolina 45 194 3
## 1109 2020-03-22 South Dakota 46 21 1
## 1110 2020-03-22 Tennessee 47 424 2
## 1111 2020-03-22 Texas 48 639 7
## 1112 2020-03-22 Utah 49 182 1
## 1113 2020-03-22 Vermont 50 52 2
## 1114 2020-03-22 Virgin Islands 78 17 0
## 1115 2020-03-22 Virginia 51 219 6
## 1116 2020-03-22 Washington 53 1844 97
## 1117 2020-03-22 West Virginia 54 16 0
## 1118 2020-03-22 Wisconsin 55 382 4
## 1119 2020-03-22 Wyoming 56 26 0
## 1120 2020-03-23 Alabama 1 196 0
## 1121 2020-03-23 Alaska 2 36 0
## 1122 2020-03-23 Arizona 4 234 2
## 1123 2020-03-23 Arkansas 5 201 0
## 1124 2020-03-23 California 6 2240 39
## 1125 2020-03-23 Colorado 8 721 10
## 1126 2020-03-23 Connecticut 9 415 10
## 1127 2020-03-23 Delaware 10 87 0
## 1128 2020-03-23 District of Columbia 11 116 2
## 1129 2020-03-23 Florida 12 1222 18
## 1130 2020-03-23 Georgia 13 800 25
## 1131 2020-03-23 Guam 66 29 1
## 1132 2020-03-23 Hawaii 15 77 0
## 1133 2020-03-23 Idaho 16 50 0
## 1134 2020-03-23 Illinois 17 1285 12
## 1135 2020-03-23 Indiana 18 264 12
## 1136 2020-03-23 Iowa 19 105 0
## 1137 2020-03-23 Kansas 20 82 2
## 1138 2020-03-23 Kentucky 21 124 3
## 1139 2020-03-23 Louisiana 22 1172 34
## 1140 2020-03-23 Maine 23 107 0
## 1141 2020-03-23 Maryland 24 290 3
## 1142 2020-03-23 Massachusetts 25 777 9
## 1143 2020-03-23 Michigan 26 1324 16
## 1144 2020-03-23 Minnesota 27 235 1
## 1145 2020-03-23 Mississippi 28 249 1
## 1146 2020-03-23 Missouri 29 183 4
## 1147 2020-03-23 Montana 30 45 0
## 1148 2020-03-23 Nebraska 31 73 0
## 1149 2020-03-23 Nevada 32 265 4
## 1150 2020-03-23 New Hampshire 33 101 1
## 1151 2020-03-23 New Jersey 34 2844 27
## 1152 2020-03-23 New Mexico 35 83 0
## 1153 2020-03-23 New York 36 20899 183
## 1154 2020-03-23 North Carolina 37 302 0
## 1155 2020-03-23 North Dakota 38 32 0
## 1156 2020-03-23 Ohio 39 444 6
## 1157 2020-03-23 Oklahoma 40 81 2
## 1158 2020-03-23 Oregon 41 191 5
## 1159 2020-03-23 Pennsylvania 42 644 6
## 1160 2020-03-23 Puerto Rico 72 31 2
## 1161 2020-03-23 Rhode Island 44 106 0
## 1162 2020-03-23 South Carolina 45 299 5
## 1163 2020-03-23 South Dakota 46 28 1
## 1164 2020-03-23 Tennessee 47 522 2
## 1165 2020-03-23 Texas 48 728 7
## 1166 2020-03-23 Utah 49 257 1
## 1167 2020-03-23 Vermont 50 75 2
## 1168 2020-03-23 Virgin Islands 78 17 0
## 1169 2020-03-23 Virginia 51 254 6
## 1170 2020-03-23 Washington 53 2101 110
## 1171 2020-03-23 West Virginia 54 16 0
## 1172 2020-03-23 Wisconsin 55 418 5
## 1173 2020-03-23 Wyoming 56 28 0
## 1174 2020-03-24 Alabama 1 242 0
## 1175 2020-03-24 Alaska 2 42 0
## 1176 2020-03-24 Arizona 4 326 6
## 1177 2020-03-24 Arkansas 5 231 2
## 1178 2020-03-24 California 6 2644 52
## 1179 2020-03-24 Colorado 8 912 11
## 1180 2020-03-24 Connecticut 9 618 12
## 1181 2020-03-24 Delaware 10 104 0
## 1182 2020-03-24 District of Columbia 11 137 2
## 1183 2020-03-24 Florida 12 1467 20
## 1184 2020-03-24 Georgia 13 1095 38
## 1185 2020-03-24 Guam 66 32 1
## 1186 2020-03-24 Hawaii 15 90 0
## 1187 2020-03-24 Idaho 16 73 0
## 1188 2020-03-24 Illinois 17 1535 16
## 1189 2020-03-24 Indiana 18 371 17
## 1190 2020-03-24 Iowa 19 124 1
## 1191 2020-03-24 Kansas 20 102 3
## 1192 2020-03-24 Kentucky 21 157 3
## 1193 2020-03-24 Louisiana 22 1388 46
## 1194 2020-03-24 Maine 23 118 0
## 1195 2020-03-24 Maryland 24 349 4
## 1196 2020-03-24 Massachusetts 25 1159 11
## 1197 2020-03-24 Michigan 26 1791 24
## 1198 2020-03-24 Minnesota 27 264 1
## 1199 2020-03-24 Mississippi 28 320 1
## 1200 2020-03-24 Missouri 29 255 5
## 1201 2020-03-24 Montana 30 51 0
## 1202 2020-03-24 Nebraska 31 77 0
## 1203 2020-03-24 Nevada 32 315 6
## 1204 2020-03-24 New Hampshire 33 108 1
## 1205 2020-03-24 New Jersey 34 3675 44
## 1206 2020-03-24 New Mexico 35 100 0
## 1207 2020-03-24 New York 36 25704 264
## 1208 2020-03-24 North Carolina 37 397 0
## 1209 2020-03-24 North Dakota 38 37 0
## 1210 2020-03-24 Ohio 39 564 8
## 1211 2020-03-24 Oklahoma 40 106 3
## 1212 2020-03-24 Oregon 41 209 8
## 1213 2020-03-24 Pennsylvania 42 851 8
## 1214 2020-03-24 Puerto Rico 72 39 2
## 1215 2020-03-24 Rhode Island 44 124 0
## 1216 2020-03-24 South Carolina 45 342 8
## 1217 2020-03-24 South Dakota 46 30 1
## 1218 2020-03-24 Tennessee 47 678 2
## 1219 2020-03-24 Texas 48 857 11
## 1220 2020-03-24 Utah 49 299 1
## 1221 2020-03-24 Vermont 50 95 7
## 1222 2020-03-24 Virgin Islands 78 17 0
## 1223 2020-03-24 Virginia 51 291 7
## 1224 2020-03-24 Washington 53 2469 123
## 1225 2020-03-24 West Virginia 54 39 0
## 1226 2020-03-24 Wisconsin 55 481 5
## 1227 2020-03-24 Wyoming 56 37 0
## 1228 2020-03-25 Alabama 1 386 1
## 1229 2020-03-25 Alaska 2 59 0
## 1230 2020-03-25 Arizona 4 402 6
## 1231 2020-03-25 Arkansas 5 307 2
## 1232 2020-03-25 California 6 3183 68
## 1233 2020-03-25 Colorado 8 1086 19
## 1234 2020-03-25 Connecticut 9 875 19
## 1235 2020-03-25 Delaware 10 119 0
## 1236 2020-03-25 District of Columbia 11 183 2
## 1237 2020-03-25 Florida 12 1971 23
## 1238 2020-03-25 Georgia 13 1385 47
## 1239 2020-03-25 Guam 66 32 1
## 1240 2020-03-25 Hawaii 15 95 0
## 1241 2020-03-25 Idaho 16 123 0
## 1242 2020-03-25 Illinois 17 1874 21
## 1243 2020-03-25 Indiana 18 484 19
## 1244 2020-03-25 Iowa 19 147 1
## 1245 2020-03-25 Kansas 20 134 3
## 1246 2020-03-25 Kentucky 21 198 5
## 1247 2020-03-25 Louisiana 22 1795 65
## 1248 2020-03-25 Maine 23 142 0
## 1249 2020-03-25 Maryland 24 423 4
## 1250 2020-03-25 Massachusetts 25 1838 15
## 1251 2020-03-25 Michigan 26 2293 43
## 1252 2020-03-25 Minnesota 27 289 1
## 1253 2020-03-25 Mississippi 28 376 5
## 1254 2020-03-25 Missouri 29 384 8
## 1255 2020-03-25 Montana 30 65 0
## 1256 2020-03-25 Nebraska 31 84 0
## 1257 2020-03-25 Nevada 32 405 10
## 1258 2020-03-25 New Hampshire 33 137 1
## 1259 2020-03-25 New Jersey 34 4402 62
## 1260 2020-03-25 New Mexico 35 113 1
## 1261 2020-03-25 New York 36 33117 381
## 1262 2020-03-25 North Carolina 37 562 1
## 1263 2020-03-25 North Dakota 38 45 0
## 1264 2020-03-25 Ohio 39 707 11
## 1265 2020-03-25 Oklahoma 40 164 5
## 1266 2020-03-25 Oregon 41 266 10
## 1267 2020-03-25 Pennsylvania 42 1151 12
## 1268 2020-03-25 Puerto Rico 72 51 2
## 1269 2020-03-25 Rhode Island 44 132 0
## 1270 2020-03-25 South Carolina 45 425 8
## 1271 2020-03-25 South Dakota 46 41 1
## 1272 2020-03-25 Tennessee 47 806 3
## 1273 2020-03-25 Texas 48 1132 13
## 1274 2020-03-25 Utah 49 346 1
## 1275 2020-03-25 Vermont 50 123 8
## 1276 2020-03-25 Virgin Islands 78 17 0
## 1277 2020-03-25 Virginia 51 390 9
## 1278 2020-03-25 Washington 53 2585 130
## 1279 2020-03-25 West Virginia 54 51 0
## 1280 2020-03-25 Wisconsin 55 623 7
## 1281 2020-03-25 Wyoming 56 49 0
## 1282 2020-03-26 Alabama 1 538 3
## 1283 2020-03-26 Alaska 2 69 0
## 1284 2020-03-26 Arizona 4 508 8
## 1285 2020-03-26 Arkansas 5 350 3
## 1286 2020-03-26 California 6 4060 83
## 1287 2020-03-26 Colorado 8 1432 24
## 1288 2020-03-26 Connecticut 9 1012 21
## 1289 2020-03-26 Delaware 10 143 1
## 1290 2020-03-26 District of Columbia 11 231 3
## 1291 2020-03-26 Florida 12 2478 29
## 1292 2020-03-26 Georgia 13 1641 56
## 1293 2020-03-26 Guam 66 49 1
## 1294 2020-03-26 Hawaii 15 106 0
## 1295 2020-03-26 Idaho 16 189 3
## 1296 2020-03-26 Illinois 17 2538 26
## 1297 2020-03-26 Indiana 18 661 23
## 1298 2020-03-26 Iowa 19 179 1
## 1299 2020-03-26 Kansas 20 173 3
## 1300 2020-03-26 Kentucky 21 248 5
## 1301 2020-03-26 Louisiana 22 2305 83
## 1302 2020-03-26 Maine 23 155 0
## 1303 2020-03-26 Maryland 24 581 4
## 1304 2020-03-26 Massachusetts 25 2417 25
## 1305 2020-03-26 Michigan 26 2877 63
## 1306 2020-03-26 Minnesota 27 346 2
## 1307 2020-03-26 Mississippi 28 486 6
## 1308 2020-03-26 Missouri 29 508 8
## 1309 2020-03-26 Montana 30 90 0
## 1310 2020-03-26 Nebraska 31 91 0
## 1311 2020-03-26 Nevada 32 535 10
## 1312 2020-03-26 New Hampshire 33 158 1
## 1313 2020-03-26 New Jersey 34 6876 82
## 1314 2020-03-26 New Mexico 35 136 1
## 1315 2020-03-26 New York 36 39058 502
## 1316 2020-03-26 North Carolina 37 639 2
## 1317 2020-03-26 North Dakota 38 58 0
## 1318 2020-03-26 Ohio 39 867 15
## 1319 2020-03-26 Oklahoma 40 248 7
## 1320 2020-03-26 Oregon 41 316 11
## 1321 2020-03-26 Pennsylvania 42 1690 16
## 1322 2020-03-26 Puerto Rico 72 64 2
## 1323 2020-03-26 Rhode Island 44 165 0
## 1324 2020-03-26 South Carolina 45 456 9
## 1325 2020-03-26 South Dakota 46 46 1
## 1326 2020-03-26 Tennessee 47 981 3
## 1327 2020-03-26 Texas 48 1542 21
## 1328 2020-03-26 Utah 49 402 1
## 1329 2020-03-26 Vermont 50 158 9
## 1330 2020-03-26 Virgin Islands 78 17 0
## 1331 2020-03-26 Virginia 51 603 14
## 1332 2020-03-26 Washington 53 3208 152
## 1333 2020-03-26 West Virginia 54 76 0
## 1334 2020-03-26 Wisconsin 55 754 10
## 1335 2020-03-26 Wyoming 56 56 0
## 1336 2020-03-27 Alabama 1 639 4
## 1337 2020-03-27 Alaska 2 85 1
## 1338 2020-03-27 Arizona 4 665 15
## 1339 2020-03-27 Arkansas 5 385 3
## 1340 2020-03-27 California 6 4915 104
## 1341 2020-03-27 Colorado 8 1735 31
## 1342 2020-03-27 Connecticut 9 1291 27
## 1343 2020-03-27 Delaware 10 165 2
## 1344 2020-03-27 District of Columbia 11 267 3
## 1345 2020-03-27 Florida 12 3198 46
## 1346 2020-03-27 Georgia 13 2198 64
## 1347 2020-03-27 Guam 66 53 1
## 1348 2020-03-27 Hawaii 15 120 0
## 1349 2020-03-27 Idaho 16 232 4
## 1350 2020-03-27 Illinois 17 3029 37
## 1351 2020-03-27 Indiana 18 992 32
## 1352 2020-03-27 Iowa 19 236 3
## 1353 2020-03-27 Kansas 20 213 4
## 1354 2020-03-27 Kentucky 21 302 8
## 1355 2020-03-27 Louisiana 22 2746 119
## 1356 2020-03-27 Maine 23 168 1
## 1357 2020-03-27 Maryland 24 790 5
## 1358 2020-03-27 Massachusetts 25 3240 35
## 1359 2020-03-27 Michigan 26 3655 93
## 1360 2020-03-27 Minnesota 27 398 4
## 1361 2020-03-27 Mississippi 28 579 8
## 1362 2020-03-27 Missouri 29 670 9
## 1363 2020-03-27 Montana 30 121 1
## 1364 2020-03-27 Nebraska 31 102 2
## 1365 2020-03-27 Nevada 32 621 10
## 1366 2020-03-27 New Hampshire 33 187 2
## 1367 2020-03-27 New Jersey 34 8825 108
## 1368 2020-03-27 New Mexico 35 191 1
## 1369 2020-03-27 New York 36 44746 645
## 1370 2020-03-27 North Carolina 37 784 3
## 1371 2020-03-27 North Dakota 38 68 1
## 1372 2020-03-27 Ohio 39 1144 22
## 1373 2020-03-27 Oklahoma 40 322 8
## 1374 2020-03-27 Oregon 41 415 12
## 1375 2020-03-27 Pennsylvania 42 2217 23
## 1376 2020-03-27 Puerto Rico 72 79 3
## 1377 2020-03-27 Rhode Island 44 203 0
## 1378 2020-03-27 South Carolina 45 542 13
## 1379 2020-03-27 South Dakota 46 58 1
## 1380 2020-03-27 Tennessee 47 1180 6
## 1381 2020-03-27 Texas 48 1971 25
## 1382 2020-03-27 Utah 49 480 2
## 1383 2020-03-27 Vermont 50 184 10
## 1384 2020-03-27 Virgin Islands 78 19 0
## 1385 2020-03-27 Virginia 51 605 14
## 1386 2020-03-27 Washington 53 3770 179
## 1387 2020-03-27 West Virginia 54 96 0
## 1388 2020-03-27 Wisconsin 55 930 16
## 1389 2020-03-27 Wyoming 56 74 0
## 1390 2020-03-28 Alabama 1 720 4
## 1391 2020-03-28 Alaska 2 102 1
## 1392 2020-03-28 Arizona 4 773 15
## 1393 2020-03-28 Arkansas 5 409 5
## 1394 2020-03-28 California 6 5566 122
## 1395 2020-03-28 Colorado 8 2061 44
## 1396 2020-03-28 Connecticut 9 1524 33
## 1397 2020-03-28 Delaware 10 214 5
## 1398 2020-03-28 District of Columbia 11 304 4
## 1399 2020-03-28 Florida 12 4038 56
## 1400 2020-03-28 Georgia 13 2447 79
## 1401 2020-03-28 Guam 66 57 1
## 1402 2020-03-28 Hawaii 15 151 0
## 1403 2020-03-28 Idaho 16 262 5
## 1404 2020-03-28 Illinois 17 3547 50
## 1405 2020-03-28 Indiana 18 1239 38
## 1406 2020-03-28 Iowa 19 298 3
## 1407 2020-03-28 Kansas 20 272 6
## 1408 2020-03-28 Kentucky 21 394 9
## 1409 2020-03-28 Louisiana 22 3315 137
## 1410 2020-03-28 Maine 23 211 1
## 1411 2020-03-28 Maryland 24 1066 10
## 1412 2020-03-28 Massachusetts 25 4257 44
## 1413 2020-03-28 Michigan 26 4634 112
## 1414 2020-03-28 Minnesota 27 442 5
## 1415 2020-03-28 Mississippi 28 669 13
## 1416 2020-03-28 Missouri 29 837 11
## 1417 2020-03-28 Montana 30 147 1
## 1418 2020-03-28 Nebraska 31 122 2
## 1419 2020-03-28 Nevada 32 738 14
## 1420 2020-03-28 New Hampshire 33 214 2
## 1421 2020-03-28 New Jersey 34 11124 140
## 1422 2020-03-28 New Mexico 35 210 2
## 1423 2020-03-28 New York 36 53517 935
## 1424 2020-03-28 North Carolina 37 972 4
## 1425 2020-03-28 North Dakota 38 93 1
## 1426 2020-03-28 Northern Mariana Islands 69 2 0
## 1427 2020-03-28 Ohio 39 1406 25
## 1428 2020-03-28 Oklahoma 40 377 15
## 1429 2020-03-28 Oregon 41 480 13
## 1430 2020-03-28 Pennsylvania 42 2815 35
## 1431 2020-03-28 Puerto Rico 72 100 3
## 1432 2020-03-28 Rhode Island 44 239 2
## 1433 2020-03-28 South Carolina 45 661 15
## 1434 2020-03-28 South Dakota 46 68 1
## 1435 2020-03-28 Tennessee 47 1363 6
## 1436 2020-03-28 Texas 48 2381 30
## 1437 2020-03-28 Utah 49 608 2
## 1438 2020-03-28 Vermont 50 211 12
## 1439 2020-03-28 Virgin Islands 78 19 0
## 1440 2020-03-28 Virginia 51 739 17
## 1441 2020-03-28 Washington 53 4311 193
## 1442 2020-03-28 West Virginia 54 113 0
## 1443 2020-03-28 Wisconsin 55 1042 17
## 1444 2020-03-28 Wyoming 56 85 0
## 1445 2020-03-29 Alabama 1 830 5
## 1446 2020-03-29 Alaska 2 114 2
## 1447 2020-03-29 Arizona 4 930 18
## 1448 2020-03-29 Arkansas 5 449 6
## 1449 2020-03-29 California 6 6321 132
## 1450 2020-03-29 Colorado 8 2315 47
## 1451 2020-03-29 Connecticut 9 1993 34
## 1452 2020-03-29 Delaware 10 232 6
## 1453 2020-03-29 District of Columbia 11 342 5
## 1454 2020-03-29 Florida 12 4943 60
## 1455 2020-03-29 Georgia 13 2683 83
## 1456 2020-03-29 Guam 66 58 1
## 1457 2020-03-29 Hawaii 15 175 0
## 1458 2020-03-29 Idaho 16 310 6
## 1459 2020-03-29 Illinois 17 4615 71
## 1460 2020-03-29 Indiana 18 1522 40
## 1461 2020-03-29 Iowa 19 336 4
## 1462 2020-03-29 Kansas 20 333 7
## 1463 2020-03-29 Kentucky 21 439 9
## 1464 2020-03-29 Louisiana 22 3539 153
## 1465 2020-03-29 Maine 23 253 3
## 1466 2020-03-29 Maryland 24 1244 11
## 1467 2020-03-29 Massachusetts 25 4955 48
## 1468 2020-03-29 Michigan 26 5486 132
## 1469 2020-03-29 Minnesota 27 504 9
## 1470 2020-03-29 Mississippi 28 759 14
## 1471 2020-03-29 Missouri 29 902 12
## 1472 2020-03-29 Montana 30 161 1
## 1473 2020-03-29 Nebraska 31 138 2
## 1474 2020-03-29 Nevada 32 920 15
## 1475 2020-03-29 New Hampshire 33 258 3
## 1476 2020-03-29 New Jersey 34 13386 161
## 1477 2020-03-29 New Mexico 35 237 2
## 1478 2020-03-29 New York 36 59783 1180
## 1479 2020-03-29 North Carolina 37 1166 6
## 1480 2020-03-29 North Dakota 38 97 1
## 1481 2020-03-29 Northern Mariana Islands 69 2 0
## 1482 2020-03-29 Ohio 39 1665 30
## 1483 2020-03-29 Oklahoma 40 429 16
## 1484 2020-03-29 Oregon 41 549 13
## 1485 2020-03-29 Pennsylvania 42 3441 40
## 1486 2020-03-29 Puerto Rico 72 127 5
## 1487 2020-03-29 Rhode Island 44 294 3
## 1488 2020-03-29 South Carolina 45 775 16
## 1489 2020-03-29 South Dakota 46 90 1
## 1490 2020-03-29 Tennessee 47 1569 7
## 1491 2020-03-29 Texas 48 2722 35
## 1492 2020-03-29 Utah 49 719 2
## 1493 2020-03-29 Vermont 50 235 12
## 1494 2020-03-29 Virgin Islands 78 23 0
## 1495 2020-03-29 Virginia 51 889 22
## 1496 2020-03-29 Washington 53 4897 209
## 1497 2020-03-29 West Virginia 54 124 1
## 1498 2020-03-29 Wisconsin 55 1120 17
## 1499 2020-03-29 Wyoming 56 88 0
## 1500 2020-03-30 Alabama 1 947 11
## 1501 2020-03-30 Alaska 2 120 2
## 1502 2020-03-30 Arizona 4 1169 20
## 1503 2020-03-30 Arkansas 5 508 7
## 1504 2020-03-30 California 6 7421 147
## 1505 2020-03-30 Colorado 8 2628 51
## 1506 2020-03-30 Connecticut 9 2571 36
## 1507 2020-03-30 Delaware 10 264 7
## 1508 2020-03-30 District of Columbia 11 401 9
## 1509 2020-03-30 Florida 12 5695 72
## 1510 2020-03-30 Georgia 13 3032 103
## 1511 2020-03-30 Guam 66 60 1
## 1512 2020-03-30 Hawaii 15 204 0
## 1513 2020-03-30 Idaho 16 415 7
## 1514 2020-03-30 Illinois 17 5070 84
## 1515 2020-03-30 Indiana 18 1797 44
## 1516 2020-03-30 Iowa 19 424 6
## 1517 2020-03-30 Kansas 20 374 9
## 1518 2020-03-30 Kentucky 21 480 11
## 1519 2020-03-30 Louisiana 22 4024 186
## 1520 2020-03-30 Maine 23 275 3
## 1521 2020-03-30 Maryland 24 1415 15
## 1522 2020-03-30 Massachusetts 25 5752 56
## 1523 2020-03-30 Michigan 26 6508 197
## 1524 2020-03-30 Minnesota 27 576 10
## 1525 2020-03-30 Mississippi 28 848 16
## 1526 2020-03-30 Missouri 29 1049 13
## 1527 2020-03-30 Montana 30 177 4
## 1528 2020-03-30 Nebraska 31 185 3
## 1529 2020-03-30 Nevada 32 1044 18
## 1530 2020-03-30 New Hampshire 33 314 3
## 1531 2020-03-30 New Jersey 34 16636 199
## 1532 2020-03-30 New Mexico 35 282 4
## 1533 2020-03-30 New York 36 67504 1512
## 1534 2020-03-30 North Carolina 37 1303 6
## 1535 2020-03-30 North Dakota 38 109 3
## 1536 2020-03-30 Northern Mariana Islands 69 2 0
## 1537 2020-03-30 Ohio 39 1933 40
## 1538 2020-03-30 Oklahoma 40 481 17
## 1539 2020-03-30 Oregon 41 607 16
## 1540 2020-03-30 Pennsylvania 42 4156 48
## 1541 2020-03-30 Puerto Rico 72 174 6
## 1542 2020-03-30 Rhode Island 44 408 4
## 1543 2020-03-30 South Carolina 45 925 18
## 1544 2020-03-30 South Dakota 46 100 1
## 1545 2020-03-30 Tennessee 47 1721 13
## 1546 2020-03-30 Texas 48 3065 46
## 1547 2020-03-30 Utah 49 806 4
## 1548 2020-03-30 Vermont 50 256 12
## 1549 2020-03-30 Virgin Islands 78 30 0
## 1550 2020-03-30 Virginia 51 1020 26
## 1551 2020-03-30 Washington 53 5180 221
## 1552 2020-03-30 West Virginia 54 145 1
## 1553 2020-03-30 Wisconsin 55 1269 20
## 1554 2020-03-30 Wyoming 56 96 0
## 1555 2020-03-31 Alabama 1 999 14
## 1556 2020-03-31 Alaska 2 133 2
## 1557 2020-03-31 Arizona 4 1298 24
## 1558 2020-03-31 Arkansas 5 564 8
## 1559 2020-03-31 California 6 8583 184
## 1560 2020-03-31 Colorado 8 2990 69
## 1561 2020-03-31 Connecticut 9 3128 69
## 1562 2020-03-31 Delaware 10 319 10
## 1563 2020-03-31 District of Columbia 11 495 9
## 1564 2020-03-31 Florida 12 6742 85
## 1565 2020-03-31 Georgia 13 4116 126
## 1566 2020-03-31 Guam 66 139 2
## 1567 2020-03-31 Hawaii 15 224 1
## 1568 2020-03-31 Idaho 16 526 9
## 1569 2020-03-31 Illinois 17 5992 107
## 1570 2020-03-31 Indiana 18 2177 61
## 1571 2020-03-31 Iowa 19 498 7
## 1572 2020-03-31 Kansas 20 435 10
## 1573 2020-03-31 Kentucky 21 590 18
## 1574 2020-03-31 Louisiana 22 5237 240
## 1575 2020-03-31 Maine 23 303 5
## 1576 2020-03-31 Maryland 24 1662 18
## 1577 2020-03-31 Massachusetts 25 6620 89
## 1578 2020-03-31 Michigan 26 7629 264
## 1579 2020-03-31 Minnesota 27 629 12
## 1580 2020-03-31 Mississippi 28 937 20
## 1581 2020-03-31 Missouri 29 1350 15
## 1582 2020-03-31 Montana 30 198 5
## 1583 2020-03-31 Nebraska 31 199 4
## 1584 2020-03-31 Nevada 32 1113 26
## 1585 2020-03-31 New Hampshire 33 367 3
## 1586 2020-03-31 New Jersey 34 18696 267
## 1587 2020-03-31 New Mexico 35 315 5
## 1588 2020-03-31 New York 36 76211 1929
## 1589 2020-03-31 North Carolina 37 1527 10
## 1590 2020-03-31 North Dakota 38 126 3
## 1591 2020-03-31 Northern Mariana Islands 69 2 0
## 1592 2020-03-31 Ohio 39 2199 55
## 1593 2020-03-31 Oklahoma 40 566 23
## 1594 2020-03-31 Oregon 41 690 18
## 1595 2020-03-31 Pennsylvania 42 4997 72
## 1596 2020-03-31 Puerto Rico 72 239 8
## 1597 2020-03-31 Rhode Island 44 488 8
## 1598 2020-03-31 South Carolina 45 1083 22
## 1599 2020-03-31 South Dakota 46 107 1
## 1600 2020-03-31 Tennessee 47 2049 13
## 1601 2020-03-31 Texas 48 3588 57
## 1602 2020-03-31 Utah 49 887 5
## 1603 2020-03-31 Vermont 50 293 13
## 1604 2020-03-31 Virgin Islands 78 30 0
## 1605 2020-03-31 Virginia 51 1249 27
## 1606 2020-03-31 Washington 53 5293 226
## 1607 2020-03-31 West Virginia 54 162 1
## 1608 2020-03-31 Wisconsin 55 1351 25
## 1609 2020-03-31 Wyoming 56 121 0
## 1610 2020-04-01 Alabama 1 1108 28
## 1611 2020-04-01 Alaska 2 143 2
## 1612 2020-04-01 Arizona 4 1413 29
## 1613 2020-04-01 Arkansas 5 624 10
## 1614 2020-04-01 California 6 9857 212
## 1615 2020-04-01 Colorado 8 3346 80
## 1616 2020-04-01 Connecticut 9 3557 85
## 1617 2020-04-01 Delaware 10 368 11
## 1618 2020-04-01 District of Columbia 11 586 11
## 1619 2020-04-01 Florida 12 7769 100
## 1620 2020-04-01 Georgia 13 4747 154
## 1621 2020-04-01 Guam 66 147 3
## 1622 2020-04-01 Hawaii 15 258 1
## 1623 2020-04-01 Idaho 16 669 9
## 1624 2020-04-01 Illinois 17 6978 146
## 1625 2020-04-01 Indiana 18 2578 80
## 1626 2020-04-01 Iowa 19 549 9
## 1627 2020-04-01 Kansas 20 489 11
## 1628 2020-04-01 Kentucky 21 674 20
## 1629 2020-04-01 Louisiana 22 6424 275
## 1630 2020-04-01 Maine 23 344 7
## 1631 2020-04-01 Maryland 24 1985 33
## 1632 2020-04-01 Massachusetts 25 7738 122
## 1633 2020-04-01 Michigan 26 9292 336
## 1634 2020-04-01 Minnesota 27 689 17
## 1635 2020-04-01 Mississippi 28 1073 22
## 1636 2020-04-01 Missouri 29 1580 21
## 1637 2020-04-01 Montana 30 219 5
## 1638 2020-04-01 Nebraska 31 249 5
## 1639 2020-04-01 Nevada 32 1279 32
## 1640 2020-04-01 New Hampshire 33 415 4
## 1641 2020-04-01 New Jersey 34 22255 355
## 1642 2020-04-01 New Mexico 35 363 6
## 1643 2020-04-01 New York 36 84364 2415
## 1644 2020-04-01 North Carolina 37 1591 11
## 1645 2020-04-01 North Dakota 38 147 3
## 1646 2020-04-01 Northern Mariana Islands 69 6 1
## 1647 2020-04-01 Ohio 39 2548 65
## 1648 2020-04-01 Oklahoma 40 719 30
## 1649 2020-04-01 Oregon 41 737 19
## 1650 2020-04-01 Pennsylvania 42 5805 78
## 1651 2020-04-01 Puerto Rico 72 286 11
## 1652 2020-04-01 Rhode Island 44 566 10
## 1653 2020-04-01 South Carolina 45 1293 26
## 1654 2020-04-01 South Dakota 46 129 1
## 1655 2020-04-01 Tennessee 47 2689 23
## 1656 2020-04-01 Texas 48 4402 65
## 1657 2020-04-01 Utah 49 1012 7
## 1658 2020-04-01 Vermont 50 321 16
## 1659 2020-04-01 Virgin Islands 78 30 0
## 1660 2020-04-01 Virginia 51 1511 18
## 1661 2020-04-01 Washington 53 5589 250
## 1662 2020-04-01 West Virginia 54 191 2
## 1663 2020-04-01 Wisconsin 55 1552 33
## 1664 2020-04-01 Wyoming 56 138 0
## 1665 2020-04-02 Alabama 1 1270 32
## 1666 2020-04-02 Alaska 2 146 2
## 1667 2020-04-02 Arizona 4 1600 35
## 1668 2020-04-02 Arkansas 5 683 12
## 1669 2020-04-02 California 6 11190 247
## 1670 2020-04-02 Colorado 8 3728 96
## 1671 2020-04-02 Connecticut 9 3824 112
## 1672 2020-04-02 Delaware 10 393 12
## 1673 2020-04-02 District of Columbia 11 653 12
## 1674 2020-04-02 Florida 12 9000 144
## 1675 2020-04-02 Georgia 13 5444 176
## 1676 2020-04-02 Guam 66 152 3
## 1677 2020-04-02 Hawaii 15 283 2
## 1678 2020-04-02 Idaho 16 891 9
## 1679 2020-04-02 Illinois 17 7695 165
## 1680 2020-04-02 Indiana 18 3056 94
## 1681 2020-04-02 Iowa 19 614 11
## 1682 2020-04-02 Kansas 20 554 14
## 1683 2020-04-02 Kentucky 21 747 34
## 1684 2020-04-02 Louisiana 22 9152 310
## 1685 2020-04-02 Maine 23 376 7
## 1686 2020-04-02 Maryland 24 2331 36
## 1687 2020-04-02 Massachusetts 25 8966 154
## 1688 2020-04-02 Michigan 26 10791 417
## 1689 2020-04-02 Minnesota 27 742 18
## 1690 2020-04-02 Mississippi 28 1177 26
## 1691 2020-04-02 Missouri 29 1834 28
## 1692 2020-04-02 Montana 30 241 5
## 1693 2020-04-02 Nebraska 31 273 6
## 1694 2020-04-02 Nevada 32 1458 38
## 1695 2020-04-02 New Hampshire 33 479 5
## 1696 2020-04-02 New Jersey 34 25590 539
## 1697 2020-04-02 New Mexico 35 403 7
## 1698 2020-04-02 New York 36 93360 2963
## 1699 2020-04-02 North Carolina 37 1858 17
## 1700 2020-04-02 North Dakota 38 159 3
## 1701 2020-04-02 Northern Mariana Islands 69 8 1
## 1702 2020-04-02 Ohio 39 2903 81
## 1703 2020-04-02 Oklahoma 40 879 34
## 1704 2020-04-02 Oregon 41 827 21
## 1705 2020-04-02 Pennsylvania 42 7021 91
## 1706 2020-04-02 Puerto Rico 72 316 12
## 1707 2020-04-02 Rhode Island 44 657 12
## 1708 2020-04-02 South Carolina 45 1554 31
## 1709 2020-04-02 South Dakota 46 165 2
## 1710 2020-04-02 Tennessee 47 2868 32
## 1711 2020-04-02 Texas 48 4952 80
## 1712 2020-04-02 Utah 49 1077 7
## 1713 2020-04-02 Vermont 50 338 17
## 1714 2020-04-02 Virgin Islands 78 37 0
## 1715 2020-04-02 Virginia 51 1706 18
## 1716 2020-04-02 Washington 53 6586 272
## 1717 2020-04-02 West Virginia 54 217 2
## 1718 2020-04-02 Wisconsin 55 1730 37
## 1719 2020-04-02 Wyoming 56 154 0
## 1720 2020-04-03 Alabama 1 1535 38
## 1721 2020-04-03 Alaska 2 156 2
## 1722 2020-04-03 Arizona 4 1769 41
## 1723 2020-04-03 Arkansas 5 738 12
## 1724 2020-04-03 California 6 12569 282
## 1725 2020-04-03 Colorado 8 4182 110
## 1726 2020-04-03 Connecticut 9 4915 132
## 1727 2020-04-03 Delaware 10 450 14
## 1728 2020-04-03 District of Columbia 11 757 15
## 1729 2020-04-03 Florida 12 10260 169
## 1730 2020-04-03 Georgia 13 5967 198
## 1731 2020-04-03 Guam 66 154 4
## 1732 2020-04-03 Hawaii 15 317 3
## 1733 2020-04-03 Idaho 16 1012 10
## 1734 2020-04-03 Illinois 17 8904 212
## 1735 2020-04-03 Indiana 18 3455 118
## 1736 2020-04-03 Iowa 19 699 11
## 1737 2020-04-03 Kansas 20 625 19
## 1738 2020-04-03 Kentucky 21 762 34
## 1739 2020-04-03 Louisiana 22 10299 370
## 1740 2020-04-03 Maine 23 432 9
## 1741 2020-04-03 Maryland 24 2758 42
## 1742 2020-04-03 Massachusetts 25 10402 192
## 1743 2020-04-03 Michigan 26 12669 478
## 1744 2020-04-03 Minnesota 27 789 22
## 1745 2020-04-03 Mississippi 28 1358 29
## 1746 2020-04-03 Missouri 29 2113 36
## 1747 2020-04-03 Montana 30 262 5
## 1748 2020-04-03 Nebraska 31 297 6
## 1749 2020-04-03 Nevada 32 1549 43
## 1750 2020-04-03 New Hampshire 33 540 7
## 1751 2020-04-03 New Jersey 34 29895 647
## 1752 2020-04-03 New Mexico 35 495 10
## 1753 2020-04-03 New York 36 103689 3716
## 1754 2020-04-03 North Carolina 37 2093 23
## 1755 2020-04-03 North Dakota 38 173 3
## 1756 2020-04-03 Northern Mariana Islands 69 8 1
## 1757 2020-04-03 Ohio 39 3312 91
## 1758 2020-04-03 Oklahoma 40 989 38
## 1759 2020-04-03 Oregon 41 899 22
## 1760 2020-04-03 Pennsylvania 42 8420 102
## 1761 2020-04-03 Puerto Rico 72 378 15
## 1762 2020-04-03 Rhode Island 44 711 14
## 1763 2020-04-03 South Carolina 45 1700 34
## 1764 2020-04-03 South Dakota 46 187 2
## 1765 2020-04-03 Tennessee 47 3032 38
## 1766 2020-04-03 Texas 48 5773 98
## 1767 2020-04-03 Utah 49 1248 7
## 1768 2020-04-03 Vermont 50 389 17
## 1769 2020-04-03 Virgin Islands 78 38 0
## 1770 2020-04-03 Virginia 51 2011 46
## 1771 2020-04-03 Washington 53 6967 293
## 1772 2020-04-03 West Virginia 54 242 2
## 1773 2020-04-03 Wisconsin 55 1916 50
## 1774 2020-04-03 Wyoming 56 167 0
## 1775 2020-04-04 Alabama 1 1632 44
## 1776 2020-04-04 Alaska 2 169 3
## 1777 2020-04-04 Arizona 4 2019 53
## 1778 2020-04-04 Arkansas 5 743 14
## 1779 2020-04-04 California 6 13796 323
## 1780 2020-04-04 Colorado 8 4574 126
## 1781 2020-04-04 Connecticut 9 5276 165
## 1782 2020-04-04 Delaware 10 593 14
## 1783 2020-04-04 District of Columbia 11 902 21
## 1784 2020-04-04 Florida 12 11537 194
## 1785 2020-04-04 Georgia 13 6383 208
## 1786 2020-04-04 Guam 66 223 4
## 1787 2020-04-04 Hawaii 15 349 3
## 1788 2020-04-04 Idaho 16 1076 10
## 1789 2020-04-04 Illinois 17 10357 248
## 1790 2020-04-04 Indiana 18 3975 136
## 1791 2020-04-04 Iowa 19 786 11
## 1792 2020-04-04 Kansas 20 702 21
## 1793 2020-04-04 Kentucky 21 909 40
## 1794 2020-04-04 Louisiana 22 12500 412
## 1795 2020-04-04 Maine 23 456 10
## 1796 2020-04-04 Maryland 24 3125 54
## 1797 2020-04-04 Massachusetts 25 11736 216
## 1798 2020-04-04 Michigan 26 14225 541
## 1799 2020-04-04 Minnesota 27 865 24
## 1800 2020-04-04 Mississippi 28 1455 35
## 1801 2020-04-04 Missouri 29 2291 44
## 1802 2020-04-04 Montana 30 281 6
## 1803 2020-04-04 Nebraska 31 339 8
## 1804 2020-04-04 Nevada 32 1758 46
## 1805 2020-04-04 New Hampshire 33 621 9
## 1806 2020-04-04 New Jersey 34 34124 847
## 1807 2020-04-04 New Mexico 35 544 11
## 1808 2020-04-04 New York 36 115963 4535
## 1809 2020-04-04 North Carolina 37 2402 30
## 1810 2020-04-04 North Dakota 38 186 3
## 1811 2020-04-04 Northern Mariana Islands 69 8 1
## 1812 2020-04-04 Ohio 39 3739 102
## 1813 2020-04-04 Oklahoma 40 1159 42
## 1814 2020-04-04 Oregon 41 1000 26
## 1815 2020-04-04 Pennsylvania 42 10110 140
## 1816 2020-04-04 Puerto Rico 72 452 18
## 1817 2020-04-04 Rhode Island 44 806 17
## 1818 2020-04-04 South Carolina 45 1917 40
## 1819 2020-04-04 South Dakota 46 212 2
## 1820 2020-04-04 Tennessee 47 3265 47
## 1821 2020-04-04 Texas 48 6566 124
## 1822 2020-04-04 Utah 49 1426 8
## 1823 2020-04-04 Vermont 50 461 20
## 1824 2020-04-04 Virgin Islands 78 42 0
## 1825 2020-04-04 Virginia 51 2408 52
## 1826 2020-04-04 Washington 53 7499 318
## 1827 2020-04-04 West Virginia 54 282 2
## 1828 2020-04-04 Wisconsin 55 2112 60
## 1829 2020-04-04 Wyoming 56 189 0
## 1830 2020-04-05 Alabama 1 1840 45
## 1831 2020-04-05 Alaska 2 183 4
## 1832 2020-04-05 Arizona 4 2269 64
## 1833 2020-04-05 Arkansas 5 853 16
## 1834 2020-04-05 California 6 15202 351
## 1835 2020-04-05 Colorado 8 4950 140
## 1836 2020-04-05 Connecticut 9 5675 189
## 1837 2020-04-05 Delaware 10 673 14
## 1838 2020-04-05 District of Columbia 11 998 22
## 1839 2020-04-05 Florida 12 12342 220
## 1840 2020-04-05 Georgia 13 6742 219
## 1841 2020-04-05 Guam 66 265 4
## 1842 2020-04-05 Hawaii 15 369 4
## 1843 2020-04-05 Idaho 16 1100 10
## 1844 2020-04-05 Illinois 17 11276 283
## 1845 2020-04-05 Indiana 18 4437 151
## 1846 2020-04-05 Iowa 19 868 22
## 1847 2020-04-05 Kansas 20 769 23
## 1848 2020-04-05 Kentucky 21 1048 44
## 1849 2020-04-05 Louisiana 22 13014 477
## 1850 2020-04-05 Maine 23 470 10
## 1851 2020-04-05 Maryland 24 3609 68
## 1852 2020-04-05 Massachusetts 25 12500 231
## 1853 2020-04-05 Michigan 26 15633 617
## 1854 2020-04-05 Minnesota 27 935 29
## 1855 2020-04-05 Mississippi 28 1638 43
## 1856 2020-04-05 Missouri 29 2367 52
## 1857 2020-04-05 Montana 30 298 6
## 1858 2020-04-05 Nebraska 31 377 8
## 1859 2020-04-05 Nevada 32 1880 46
## 1860 2020-04-05 New Hampshire 33 669 9
## 1861 2020-04-05 New Jersey 34 37505 917
## 1862 2020-04-05 New Mexico 35 624 12
## 1863 2020-04-05 New York 36 124085 5335
## 1864 2020-04-05 North Carolina 37 2585 37
## 1865 2020-04-05 North Dakota 38 207 3
## 1866 2020-04-05 Northern Mariana Islands 69 8 1
## 1867 2020-04-05 Ohio 39 4043 119
## 1868 2020-04-05 Oklahoma 40 1251 46
## 1869 2020-04-05 Oregon 41 1068 27
## 1870 2020-04-05 Pennsylvania 42 11590 159
## 1871 2020-04-05 Puerto Rico 72 475 20
## 1872 2020-04-05 Rhode Island 44 922 25
## 1873 2020-04-05 South Carolina 45 2049 44
## 1874 2020-04-05 South Dakota 46 240 2
## 1875 2020-04-05 Tennessee 47 3538 50
## 1876 2020-04-05 Texas 48 7117 136
## 1877 2020-04-05 Utah 49 1618 8
## 1878 2020-04-05 Vermont 50 512 22
## 1879 2020-04-05 Virgin Islands 78 42 0
## 1880 2020-04-05 Virginia 51 2636 52
## 1881 2020-04-05 Washington 53 7985 344
## 1882 2020-04-05 West Virginia 54 325 3
## 1883 2020-04-05 Wisconsin 55 2267 73
## 1884 2020-04-05 Wyoming 56 200 0
## 1885 2020-04-06 Alabama 1 2005 53
## 1886 2020-04-06 Alaska 2 189 4
## 1887 2020-04-06 Arizona 4 2466 67
## 1888 2020-04-06 Arkansas 5 927 16
## 1889 2020-04-06 California 6 16361 386
## 1890 2020-04-06 Colorado 8 5172 150
## 1891 2020-04-06 Connecticut 9 6906 206
## 1892 2020-04-06 Delaware 10 783 15
## 1893 2020-04-06 District of Columbia 11 1097 24
## 1894 2020-04-06 Florida 12 13621 253
## 1895 2020-04-06 Georgia 13 7558 294
## 1896 2020-04-06 Guam 66 266 4
## 1897 2020-04-06 Hawaii 15 385 5
## 1898 2020-04-06 Idaho 16 1170 13
## 1899 2020-04-06 Illinois 17 12262 309
## 1900 2020-04-06 Indiana 18 4986 171
## 1901 2020-04-06 Iowa 19 946 25
## 1902 2020-04-06 Kansas 20 854 25
## 1903 2020-04-06 Kentucky 21 1057 52
## 1904 2020-04-06 Louisiana 22 14867 512
## 1905 2020-04-06 Maine 23 499 10
## 1906 2020-04-06 Maryland 24 4045 92
## 1907 2020-04-06 Massachusetts 25 13837 260
## 1908 2020-04-06 Michigan 26 17129 727
## 1909 2020-04-06 Minnesota 27 986 30
## 1910 2020-04-06 Mississippi 28 1738 51
## 1911 2020-04-06 Missouri 29 2722 56
## 1912 2020-04-06 Montana 30 319 6
## 1913 2020-04-06 Nebraska 31 438 10
## 1914 2020-04-06 Nevada 32 1971 58
## 1915 2020-04-06 New Hampshire 33 715 9
## 1916 2020-04-06 New Jersey 34 41090 1005
## 1917 2020-04-06 New Mexico 35 686 12
## 1918 2020-04-06 New York 36 133389 6149
## 1919 2020-04-06 North Carolina 37 2870 42
## 1920 2020-04-06 North Dakota 38 225 3
## 1921 2020-04-06 Northern Mariana Islands 69 8 1
## 1922 2020-04-06 Ohio 39 4450 142
## 1923 2020-04-06 Oklahoma 40 1326 51
## 1924 2020-04-06 Oregon 41 1132 29
## 1925 2020-04-06 Pennsylvania 42 13075 170
## 1926 2020-04-06 Puerto Rico 72 513 21
## 1927 2020-04-06 Rhode Island 44 1082 27
## 1928 2020-04-06 South Carolina 45 2232 48
## 1929 2020-04-06 South Dakota 46 288 4
## 1930 2020-04-06 Tennessee 47 3753 65
## 1931 2020-04-06 Texas 48 8150 159
## 1932 2020-04-06 Utah 49 1662 13
## 1933 2020-04-06 Vermont 50 543 23
## 1934 2020-04-06 Virgin Islands 78 44 1
## 1935 2020-04-06 Virginia 51 2877 54
## 1936 2020-04-06 Washington 53 8385 383
## 1937 2020-04-06 West Virginia 54 347 4
## 1938 2020-04-06 Wisconsin 55 2440 83
## 1939 2020-04-06 Wyoming 56 213 0
## 1940 2020-04-07 Alabama 1 2197 64
## 1941 2020-04-07 Alaska 2 211 4
## 1942 2020-04-07 Arizona 4 2577 77
## 1943 2020-04-07 Arkansas 5 997 18
## 1944 2020-04-07 California 6 17540 447
## 1945 2020-04-07 Colorado 8 5429 179
## 1946 2020-04-07 Connecticut 9 7781 277
## 1947 2020-04-07 Delaware 10 928 16
## 1948 2020-04-07 District of Columbia 11 1211 24
## 1949 2020-04-07 Florida 12 14739 295
## 1950 2020-04-07 Georgia 13 9156 348
## 1951 2020-04-07 Guam 66 274 4
## 1952 2020-04-07 Hawaii 15 408 5
## 1953 2020-04-07 Idaho 16 1210 15
## 1954 2020-04-07 Illinois 17 13549 384
## 1955 2020-04-07 Indiana 18 5544 208
## 1956 2020-04-07 Iowa 19 1048 26
## 1957 2020-04-07 Kansas 20 905 30
## 1958 2020-04-07 Kentucky 21 1289 66
## 1959 2020-04-07 Louisiana 22 16284 582
## 1960 2020-04-07 Maine 23 519 12
## 1961 2020-04-07 Maryland 24 4371 104
## 1962 2020-04-07 Massachusetts 25 15202 356
## 1963 2020-04-07 Michigan 26 18851 845
## 1964 2020-04-07 Minnesota 27 1069 34
## 1965 2020-04-07 Mississippi 28 1915 59
## 1966 2020-04-07 Missouri 29 3037 80
## 1967 2020-04-07 Montana 30 319 6
## 1968 2020-04-07 Nebraska 31 491 12
## 1969 2020-04-07 Nevada 32 2101 60
## 1970 2020-04-07 New Hampshire 33 747 13
## 1971 2020-04-07 New Jersey 34 44416 1232
## 1972 2020-04-07 New Mexico 35 794 13
## 1973 2020-04-07 New York 36 141703 7185
## 1974 2020-04-07 North Carolina 37 3220 50
## 1975 2020-04-07 North Dakota 38 237 4
## 1976 2020-04-07 Northern Mariana Islands 69 8 2
## 1977 2020-04-07 Ohio 39 4783 167
## 1978 2020-04-07 Oklahoma 40 1470 67
## 1979 2020-04-07 Oregon 41 1181 33
## 1980 2020-04-07 Pennsylvania 42 14582 241
## 1981 2020-04-07 Puerto Rico 72 573 23
## 1982 2020-04-07 Rhode Island 44 1229 30
## 1983 2020-04-07 South Carolina 45 2417 51
## 1984 2020-04-07 South Dakota 46 320 6
## 1985 2020-04-07 Tennessee 47 4010 72
## 1986 2020-04-07 Texas 48 8968 177
## 1987 2020-04-07 Utah 49 1737 13
## 1988 2020-04-07 Vermont 50 575 23
## 1989 2020-04-07 Virgin Islands 78 45 1
## 1990 2020-04-07 Virginia 51 3332 69
## 1991 2020-04-07 Washington 53 8683 409
## 1992 2020-04-07 West Virginia 54 413 4
## 1993 2020-04-07 Wisconsin 55 2578 94
## 1994 2020-04-07 Wyoming 56 221 0
## 1995 2020-04-08 Alabama 1 2498 67
## 1996 2020-04-08 Alaska 2 224 5
## 1997 2020-04-08 Arizona 4 2726 80
## 1998 2020-04-08 Arkansas 5 1077 18
## 1999 2020-04-08 California 6 19043 506
## 2000 2020-04-08 Colorado 8 5655 192
## 2001 2020-04-08 Connecticut 9 8781 335
## 2002 2020-04-08 Delaware 10 1116 19
## 2003 2020-04-08 District of Columbia 11 1440 27
## 2004 2020-04-08 Florida 12 15690 322
## 2005 2020-04-08 Georgia 13 10204 370
## 2006 2020-04-08 Guam 66 409 4
## 2007 2020-04-08 Hawaii 15 433 5
## 2008 2020-04-08 Idaho 16 1232 19
## 2009 2020-04-08 Illinois 17 15078 464
## 2010 2020-04-08 Indiana 18 5986 246
## 2011 2020-04-08 Iowa 19 1145 27
## 2012 2020-04-08 Kansas 20 1055 38
## 2013 2020-04-08 Kentucky 21 1393 73
## 2014 2020-04-08 Louisiana 22 17030 652
## 2015 2020-04-08 Maine 23 537 14
## 2016 2020-04-08 Maryland 24 5529 124
## 2017 2020-04-08 Massachusetts 25 16790 433
## 2018 2020-04-08 Michigan 26 20220 959
## 2019 2020-04-08 Minnesota 27 1154 39
## 2020 2020-04-08 Mississippi 28 2003 67
## 2021 2020-04-08 Missouri 29 3327 86
## 2022 2020-04-08 Montana 30 332 6
## 2023 2020-04-08 Nebraska 31 538 14
## 2024 2020-04-08 Nevada 32 2318 80
## 2025 2020-04-08 New Hampshire 33 788 18
## 2026 2020-04-08 New Jersey 34 47437 1504
## 2027 2020-04-08 New Mexico 35 865 16
## 2028 2020-04-08 New York 36 151271 8138
## 2029 2020-04-08 North Carolina 37 3423 61
## 2030 2020-04-08 North Dakota 38 251 4
## 2031 2020-04-08 Northern Mariana Islands 69 11 2
## 2032 2020-04-08 Ohio 39 5149 193
## 2033 2020-04-08 Oklahoma 40 1523 79
## 2034 2020-04-08 Oregon 41 1239 38
## 2035 2020-04-08 Pennsylvania 42 16414 313
## 2036 2020-04-08 Puerto Rico 72 620 24
## 2037 2020-04-08 Rhode Island 44 1450 35
## 2038 2020-04-08 South Carolina 45 2552 63
## 2039 2020-04-08 South Dakota 46 393 6
## 2040 2020-04-08 Tennessee 47 4246 83
## 2041 2020-04-08 Texas 48 9897 195
## 2042 2020-04-08 Utah 49 1860 13
## 2043 2020-04-08 Vermont 50 605 23
## 2044 2020-04-08 Virgin Islands 78 46 1
## 2045 2020-04-08 Virginia 51 3644 60
## 2046 2020-04-08 Washington 53 9098 430
## 2047 2020-04-08 West Virginia 54 483 4
## 2048 2020-04-08 Wisconsin 55 2756 107
## 2049 2020-04-08 Wyoming 56 230 0
## 2050 2020-04-09 Alabama 1 2838 78
## 2051 2020-04-09 Alaska 2 233 5
## 2052 2020-04-09 Arizona 4 3018 89
## 2053 2020-04-09 Arkansas 5 1146 21
## 2054 2020-04-09 California 6 20191 548
## 2055 2020-04-09 Colorado 8 6202 227
## 2056 2020-04-09 Connecticut 9 9784 380
## 2057 2020-04-09 Delaware 10 1209 23
## 2058 2020-04-09 District of Columbia 11 1523 32
## 2059 2020-04-09 Florida 12 16819 370
## 2060 2020-04-09 Georgia 13 10885 412
## 2061 2020-04-09 Guam 66 542 4
## 2062 2020-04-09 Hawaii 15 440 6
## 2063 2020-04-09 Idaho 16 1366 24
## 2064 2020-04-09 Illinois 17 16422 534
## 2065 2020-04-09 Indiana 18 6400 295
## 2066 2020-04-09 Iowa 19 1270 27
## 2067 2020-04-09 Kansas 20 1116 42
## 2068 2020-04-09 Kentucky 21 1525 84
## 2069 2020-04-09 Louisiana 22 18283 702
## 2070 2020-04-09 Maine 23 560 16
## 2071 2020-04-09 Maryland 24 6185 139
## 2072 2020-04-09 Massachusetts 25 18941 503
## 2073 2020-04-09 Michigan 26 21375 1076
## 2074 2020-04-09 Minnesota 27 1242 50
## 2075 2020-04-09 Mississippi 28 2260 76
## 2076 2020-04-09 Missouri 29 3539 94
## 2077 2020-04-09 Montana 30 354 6
## 2078 2020-04-09 Nebraska 31 594 15
## 2079 2020-04-09 Nevada 32 2456 82
## 2080 2020-04-09 New Hampshire 33 819 21
## 2081 2020-04-09 New Jersey 34 51027 1700
## 2082 2020-04-09 New Mexico 35 989 17
## 2083 2020-04-09 New York 36 162036 9166
## 2084 2020-04-09 North Carolina 37 3651 74
## 2085 2020-04-09 North Dakota 38 269 5
## 2086 2020-04-09 Northern Mariana Islands 69 11 2
## 2087 2020-04-09 Ohio 39 5513 213
## 2088 2020-04-09 Oklahoma 40 1683 80
## 2089 2020-04-09 Oregon 41 1321 44
## 2090 2020-04-09 Pennsylvania 42 18379 344
## 2091 2020-04-09 Puerto Rico 72 683 33
## 2092 2020-04-09 Rhode Island 44 1727 43
## 2093 2020-04-09 South Carolina 45 2792 67
## 2094 2020-04-09 South Dakota 46 447 6
## 2095 2020-04-09 Tennessee 47 4456 95
## 2096 2020-04-09 Texas 48 11372 228
## 2097 2020-04-09 Utah 49 1980 13
## 2098 2020-04-09 Vermont 50 628 23
## 2099 2020-04-09 Virgin Islands 78 50 1
## 2100 2020-04-09 Virginia 51 4041 109
## 2101 2020-04-09 Washington 53 9609 456
## 2102 2020-04-09 West Virginia 54 524 5
## 2103 2020-04-09 Wisconsin 55 2885 116
## 2104 2020-04-09 Wyoming 56 303 0
## 2105 2020-04-10 Alabama 1 3008 80
## 2106 2020-04-10 Alaska 2 244 5
## 2107 2020-04-10 Arizona 4 3112 97
## 2108 2020-04-10 Arkansas 5 1202 24
## 2109 2020-04-10 California 6 21366 594
## 2110 2020-04-10 Colorado 8 6510 253
## 2111 2020-04-10 Connecticut 9 10538 448
## 2112 2020-04-10 Delaware 10 1326 32
## 2113 2020-04-10 District of Columbia 11 1660 38
## 2114 2020-04-10 Florida 12 17960 418
## 2115 2020-04-10 Georgia 13 11859 425
## 2116 2020-04-10 Guam 66 577 4
## 2117 2020-04-10 Hawaii 15 463 8
## 2118 2020-04-10 Idaho 16 1425 25
## 2119 2020-04-10 Illinois 17 17887 607
## 2120 2020-04-10 Indiana 18 6960 353
## 2121 2020-04-10 Iowa 19 1388 31
## 2122 2020-04-10 Kansas 20 1180 50
## 2123 2020-04-10 Kentucky 21 1702 90
## 2124 2020-04-10 Louisiana 22 19253 755
## 2125 2020-04-10 Maine 23 586 17
## 2126 2020-04-10 Maryland 24 6968 172
## 2127 2020-04-10 Massachusetts 25 20974 599
## 2128 2020-04-10 Michigan 26 22646 1280
## 2129 2020-04-10 Minnesota 27 1335 57
## 2130 2020-04-10 Mississippi 28 2469 82
## 2131 2020-04-10 Missouri 29 3799 105
## 2132 2020-04-10 Montana 30 365 6
## 2133 2020-04-10 Nebraska 31 678 18
## 2134 2020-04-10 Nevada 32 2606 86
## 2135 2020-04-10 New Hampshire 33 885 22
## 2136 2020-04-10 New Jersey 34 54588 1932
## 2137 2020-04-10 New Mexico 35 1090 19
## 2138 2020-04-10 New York 36 172830 10162
## 2139 2020-04-10 North Carolina 37 3906 78
## 2140 2020-04-10 North Dakota 38 278 7
## 2141 2020-04-10 Northern Mariana Islands 69 11 2
## 2142 2020-04-10 Ohio 39 5879 231
## 2143 2020-04-10 Oklahoma 40 1794 88
## 2144 2020-04-10 Oregon 41 1371 48
## 2145 2020-04-10 Pennsylvania 42 20128 435
## 2146 2020-04-10 Puerto Rico 72 725 39
## 2147 2020-04-10 Rhode Island 44 2015 49
## 2148 2020-04-10 South Carolina 45 3065 72
## 2149 2020-04-10 South Dakota 46 536 6
## 2150 2020-04-10 Tennessee 47 4793 104
## 2151 2020-04-10 Texas 48 12291 249
## 2152 2020-04-10 Utah 49 2103 17
## 2153 2020-04-10 Vermont 50 679 24
## 2154 2020-04-10 Virgin Islands 78 51 1
## 2155 2020-04-10 Virginia 51 4509 121
## 2156 2020-04-10 Washington 53 9888 483
## 2157 2020-04-10 West Virginia 54 537 5
## 2158 2020-04-10 Wisconsin 55 3068 131
## 2159 2020-04-10 Wyoming 56 320 0
## 2160 2020-04-11 Alabama 1 3262 93
## 2161 2020-04-11 Alaska 2 255 6
## 2162 2020-04-11 Arizona 4 3393 112
## 2163 2020-04-11 Arkansas 5 1228 25
## 2164 2020-04-11 California 6 22421 632
## 2165 2020-04-11 Colorado 8 6893 274
## 2166 2020-04-11 Connecticut 9 11510 494
## 2167 2020-04-11 Delaware 10 1479 33
## 2168 2020-04-11 District of Columbia 11 1778 47
## 2169 2020-04-11 Florida 12 18978 445
## 2170 2020-04-11 Georgia 13 12261 432
## 2171 2020-04-11 Guam 66 681 5
## 2172 2020-04-11 Hawaii 15 484 8
## 2173 2020-04-11 Idaho 16 1438 27
## 2174 2020-04-11 Illinois 17 19180 682
## 2175 2020-04-11 Indiana 18 7494 389
## 2176 2020-04-11 Iowa 19 1510 34
## 2177 2020-04-11 Kansas 20 1282 55
## 2178 2020-04-11 Kentucky 21 1851 94
## 2179 2020-04-11 Louisiana 22 20014 806
## 2180 2020-04-11 Maine 23 616 19
## 2181 2020-04-11 Maryland 24 7694 207
## 2182 2020-04-11 Massachusetts 25 22860 686
## 2183 2020-04-11 Michigan 26 23855 1395
## 2184 2020-04-11 Minnesota 27 1427 64
## 2185 2020-04-11 Mississippi 28 2642 93
## 2186 2020-04-11 Missouri 29 4024 116
## 2187 2020-04-11 Montana 30 377 6
## 2188 2020-04-11 Nebraska 31 718 18
## 2189 2020-04-11 Nevada 32 2720 111
## 2190 2020-04-11 New Hampshire 33 929 23
## 2191 2020-04-11 New Jersey 34 58151 2183
## 2192 2020-04-11 New Mexico 35 1174 20
## 2193 2020-04-11 New York 36 182990 11159
## 2194 2020-04-11 North Carolina 37 4310 86
## 2195 2020-04-11 North Dakota 38 293 7
## 2196 2020-04-11 Northern Mariana Islands 69 11 2
## 2197 2020-04-11 Ohio 39 6251 247
## 2198 2020-04-11 Oklahoma 40 1868 93
## 2199 2020-04-11 Oregon 41 1447 51
## 2200 2020-04-11 Pennsylvania 42 21774 515
## 2201 2020-04-11 Puerto Rico 72 788 42
## 2202 2020-04-11 Rhode Island 44 2349 56
## 2203 2020-04-11 South Carolina 45 3207 80
## 2204 2020-04-11 South Dakota 46 626 6
## 2205 2020-04-11 Tennessee 47 4983 107
## 2206 2020-04-11 Texas 48 13208 265
## 2207 2020-04-11 Utah 49 2208 18
## 2208 2020-04-11 Vermont 50 711 24
## 2209 2020-04-11 Virgin Islands 78 51 1
## 2210 2020-04-11 Virginia 51 5076 130
## 2211 2020-04-11 Washington 53 10227 498
## 2212 2020-04-11 West Virginia 54 593 6
## 2213 2020-04-11 Wisconsin 55 3213 141
## 2214 2020-04-11 Wyoming 56 343 0
## 2215 2020-04-12 Alabama 1 3583 93
## 2216 2020-04-12 Alaska 2 270 6
## 2217 2020-04-12 Arizona 4 3539 117
## 2218 2020-04-12 Arkansas 5 1280 27
## 2219 2020-04-12 California 6 23323 676
## 2220 2020-04-12 Colorado 8 7303 290
## 2221 2020-04-12 Connecticut 9 12035 554
## 2222 2020-04-12 Delaware 10 1625 35
## 2223 2020-04-12 District of Columbia 11 1875 50
## 2224 2020-04-12 Florida 12 19855 460
## 2225 2020-04-12 Georgia 13 12103 438
## 2226 2020-04-12 Guam 66 716 5
## 2227 2020-04-12 Hawaii 15 497 9
## 2228 2020-04-12 Idaho 16 1457 27
## 2229 2020-04-12 Illinois 17 20852 727
## 2230 2020-04-12 Indiana 18 7990 405
## 2231 2020-04-12 Iowa 19 1587 41
## 2232 2020-04-12 Kansas 20 1337 56
## 2233 2020-04-12 Kentucky 21 1963 98
## 2234 2020-04-12 Louisiana 22 20595 840
## 2235 2020-04-12 Maine 23 633 19
## 2236 2020-04-12 Maryland 24 8225 236
## 2237 2020-04-12 Massachusetts 25 25475 756
## 2238 2020-04-12 Michigan 26 24496 1488
## 2239 2020-04-12 Minnesota 27 1621 70
## 2240 2020-04-12 Mississippi 28 2781 96
## 2241 2020-04-12 Missouri 29 4160 116
## 2242 2020-04-12 Montana 30 387 6
## 2243 2020-04-12 Nebraska 31 805 18
## 2244 2020-04-12 Nevada 32 2860 113
## 2245 2020-04-12 New Hampshire 33 985 23
## 2246 2020-04-12 New Jersey 34 61850 2350
## 2247 2020-04-12 New Mexico 35 1245 26
## 2248 2020-04-12 New York 36 191425 12116
## 2249 2020-04-12 North Carolina 37 4520 86
## 2250 2020-04-12 North Dakota 38 308 8
## 2251 2020-04-12 Northern Mariana Islands 69 11 2
## 2252 2020-04-12 Ohio 39 6605 253
## 2253 2020-04-12 Oklahoma 40 1970 96
## 2254 2020-04-12 Oregon 41 1527 52
## 2255 2020-04-12 Pennsylvania 42 22955 525
## 2256 2020-04-12 Puerto Rico 72 897 44
## 2257 2020-04-12 Rhode Island 44 2665 63
## 2258 2020-04-12 South Carolina 45 3319 82
## 2259 2020-04-12 South Dakota 46 729 6
## 2260 2020-04-12 Tennessee 47 5144 107
## 2261 2020-04-12 Texas 48 13776 288
## 2262 2020-04-12 Utah 49 2305 18
## 2263 2020-04-12 Vermont 50 727 26
## 2264 2020-04-12 Virgin Islands 78 51 1
## 2265 2020-04-12 Virginia 51 5273 141
## 2266 2020-04-12 Washington 53 10414 511
## 2267 2020-04-12 West Virginia 54 615 8
## 2268 2020-04-12 Wisconsin 55 3341 145
## 2269 2020-04-12 Wyoming 56 364 0
## 2270 2020-04-13 Alabama 1 3805 104
## 2271 2020-04-13 Alaska 2 275 6
## 2272 2020-04-13 Arizona 4 3702 122
## 2273 2020-04-13 Arkansas 5 1475 30
## 2274 2020-04-13 California 6 24334 725
## 2275 2020-04-13 Colorado 8 7691 308
## 2276 2020-04-13 Connecticut 9 13381 602
## 2277 2020-04-13 Delaware 10 1761 41
## 2278 2020-04-13 District of Columbia 11 1955 52
## 2279 2020-04-13 Florida 12 21011 498
## 2280 2020-04-13 Georgia 13 13125 479
## 2281 2020-04-13 Guam 66 719 6
## 2282 2020-04-13 Hawaii 15 502 9
## 2283 2020-04-13 Idaho 16 1499 33
## 2284 2020-04-13 Illinois 17 22025 800
## 2285 2020-04-13 Indiana 18 8300 414
## 2286 2020-04-13 Iowa 19 1710 44
## 2287 2020-04-13 Kansas 20 1384 63
## 2288 2020-04-13 Kentucky 21 2048 106
## 2289 2020-04-13 Louisiana 22 21016 884
## 2290 2020-04-13 Maine 23 698 19
## 2291 2020-04-13 Maryland 24 8936 262
## 2292 2020-04-13 Massachusetts 25 26867 844
## 2293 2020-04-13 Michigan 26 25490 1603
## 2294 2020-04-13 Minnesota 27 1650 70
## 2295 2020-04-13 Mississippi 28 2942 98
## 2296 2020-04-13 Missouri 29 4388 136
## 2297 2020-04-13 Montana 30 394 7
## 2298 2020-04-13 Nebraska 31 870 19
## 2299 2020-04-13 Nevada 32 3036 114
## 2300 2020-04-13 New Hampshire 33 1020 23
## 2301 2020-04-13 New Jersey 34 64584 2443
## 2302 2020-04-13 New Mexico 35 1345 31
## 2303 2020-04-13 New York 36 197973 12998
## 2304 2020-04-13 North Carolina 37 4788 91
## 2305 2020-04-13 North Dakota 38 331 9
## 2306 2020-04-13 Northern Mariana Islands 69 11 2
## 2307 2020-04-13 Ohio 39 6975 274
## 2308 2020-04-13 Oklahoma 40 2069 98
## 2309 2020-04-13 Oregon 41 1584 53
## 2310 2020-04-13 Pennsylvania 42 24295 563
## 2311 2020-04-13 Puerto Rico 72 903 45
## 2312 2020-04-13 Rhode Island 44 2976 73
## 2313 2020-04-13 South Carolina 45 3439 87
## 2314 2020-04-13 South Dakota 46 867 6
## 2315 2020-04-13 Tennessee 47 5483 114
## 2316 2020-04-13 Texas 48 14487 320
## 2317 2020-04-13 Utah 49 2368 18
## 2318 2020-04-13 Vermont 50 748 27
## 2319 2020-04-13 Virgin Islands 78 51 1
## 2320 2020-04-13 Virginia 51 5746 149
## 2321 2020-04-13 Washington 53 10547 525
## 2322 2020-04-13 West Virginia 54 638 9
## 2323 2020-04-13 Wisconsin 55 3428 155
## 2324 2020-04-13 Wyoming 56 373 1
## 2325 2020-04-14 Alabama 1 3953 114
## 2326 2020-04-14 Alaska 2 283 7
## 2327 2020-04-14 Arizona 4 3806 131
## 2328 2020-04-14 Arkansas 5 1498 32
## 2329 2020-04-14 California 6 25758 778
## 2330 2020-04-14 Colorado 8 7941 329
## 2331 2020-04-14 Connecticut 9 13989 671
## 2332 2020-04-14 Delaware 10 1926 43
## 2333 2020-04-14 District of Columbia 11 2058 67
## 2334 2020-04-14 Florida 12 21620 570
## 2335 2020-04-14 Georgia 13 13913 517
## 2336 2020-04-14 Guam 66 721 6
## 2337 2020-04-14 Hawaii 15 511 9
## 2338 2020-04-14 Idaho 16 1538 39
## 2339 2020-04-14 Illinois 17 23247 878
## 2340 2020-04-14 Indiana 18 8598 458
## 2341 2020-04-14 Iowa 19 1899 44
## 2342 2020-04-14 Kansas 20 1440 69
## 2343 2020-04-14 Kentucky 21 2210 115
## 2344 2020-04-14 Louisiana 22 21518 1013
## 2345 2020-04-14 Maine 23 734 20
## 2346 2020-04-14 Maryland 24 9472 302
## 2347 2020-04-14 Massachusetts 25 28163 957
## 2348 2020-04-14 Michigan 26 26845 1767
## 2349 2020-04-14 Minnesota 27 1695 79
## 2350 2020-04-14 Mississippi 28 3087 111
## 2351 2020-04-14 Missouri 29 4686 151
## 2352 2020-04-14 Montana 30 399 7
## 2353 2020-04-14 Nebraska 31 930 21
## 2354 2020-04-14 Nevada 32 3137 130
## 2355 2020-04-14 New Hampshire 33 1091 27
## 2356 2020-04-14 New Jersey 34 68824 2805
## 2357 2020-04-14 New Mexico 35 1407 36
## 2358 2020-04-14 New York 36 205375 14001
## 2359 2020-04-14 North Carolina 37 4992 116
## 2360 2020-04-14 North Dakota 38 341 9
## 2361 2020-04-14 Northern Mariana Islands 69 13 2
## 2362 2020-04-14 Ohio 39 7280 324
## 2363 2020-04-14 Oklahoma 40 2184 109
## 2364 2020-04-14 Oregon 41 1633 55
## 2365 2020-04-14 Pennsylvania 42 25591 746
## 2366 2020-04-14 Puerto Rico 72 923 45
## 2367 2020-04-14 Rhode Island 44 3251 80
## 2368 2020-04-14 South Carolina 45 3553 97
## 2369 2020-04-14 South Dakota 46 987 6
## 2370 2020-04-14 Tennessee 47 5654 123
## 2371 2020-04-14 Texas 48 15303 365
## 2372 2020-04-14 Utah 49 2420 19
## 2373 2020-04-14 Vermont 50 752 28
## 2374 2020-04-14 Virgin Islands 78 51 1
## 2375 2020-04-14 Virginia 51 6173 154
## 2376 2020-04-14 Washington 53 10711 552
## 2377 2020-04-14 West Virginia 54 697 10
## 2378 2020-04-14 Wisconsin 55 3555 172
## 2379 2020-04-14 Wyoming 56 373 1
## 2380 2020-04-15 Alabama 1 4241 123
## 2381 2020-04-15 Alaska 2 291 7
## 2382 2020-04-15 Arizona 4 3962 142
## 2383 2020-04-15 Arkansas 5 1599 34
## 2384 2020-04-15 California 6 27107 885
## 2385 2020-04-15 Colorado 8 8280 355
## 2386 2020-04-15 Connecticut 9 14755 868
## 2387 2020-04-15 Delaware 10 2014 46
## 2388 2020-04-15 District of Columbia 11 2197 72
## 2389 2020-04-15 Florida 12 22526 613
## 2390 2020-04-15 Georgia 13 14583 569
## 2391 2020-04-15 Guam 66 750 6
## 2392 2020-04-15 Hawaii 15 524 9
## 2393 2020-04-15 Idaho 16 1587 41
## 2394 2020-04-15 Illinois 17 24593 958
## 2395 2020-04-15 Indiana 18 9030 511
## 2396 2020-04-15 Iowa 19 1995 53
## 2397 2020-04-15 Kansas 20 1503 76
## 2398 2020-04-15 Kentucky 21 2295 124
## 2399 2020-04-15 Louisiana 22 21951 1103
## 2400 2020-04-15 Maine 23 770 24
## 2401 2020-04-15 Maryland 24 10096 413
## 2402 2020-04-15 Massachusetts 25 29918 1108
## 2403 2020-04-15 Michigan 26 27894 1920
## 2404 2020-04-15 Minnesota 27 1809 87
## 2405 2020-04-15 Mississippi 28 3360 122
## 2406 2020-04-15 Missouri 29 4895 164
## 2407 2020-04-15 Montana 30 404 7
## 2408 2020-04-15 Nebraska 31 994 22
## 2409 2020-04-15 Nevada 32 3212 137
## 2410 2020-04-15 New Hampshire 33 1139 32
## 2411 2020-04-15 New Jersey 34 71030 3156
## 2412 2020-04-15 New Mexico 35 1484 36
## 2413 2020-04-15 New York 36 217130 14937
## 2414 2020-04-15 North Carolina 37 5123 128
## 2415 2020-04-15 North Dakota 38 365 9
## 2416 2020-04-15 Northern Mariana Islands 69 13 2
## 2417 2020-04-15 Ohio 39 7791 361
## 2418 2020-04-15 Oklahoma 40 2263 123
## 2419 2020-04-15 Oregon 41 1663 58
## 2420 2020-04-15 Pennsylvania 42 26804 833
## 2421 2020-04-15 Puerto Rico 72 974 51
## 2422 2020-04-15 Rhode Island 44 3529 87
## 2423 2020-04-15 South Carolina 45 3656 107
## 2424 2020-04-15 South Dakota 46 1168 6
## 2425 2020-04-15 Tennessee 47 5864 135
## 2426 2020-04-15 Texas 48 16106 395
## 2427 2020-04-15 Utah 49 2549 20
## 2428 2020-04-15 Vermont 50 759 29
## 2429 2020-04-15 Virgin Islands 78 51 1
## 2430 2020-04-15 Virginia 51 6502 195
## 2431 2020-04-15 Washington 53 10806 572
## 2432 2020-04-15 West Virginia 54 725 12
## 2433 2020-04-15 Wisconsin 55 3721 184
## 2434 2020-04-15 Wyoming 56 392 2
## 2435 2020-04-16 Alabama 1 4404 137
## 2436 2020-04-16 Alaska 2 298 7
## 2437 2020-04-16 Arizona 4 4234 152
## 2438 2020-04-16 Arkansas 5 1620 37
## 2439 2020-04-16 California 6 28142 971
## 2440 2020-04-16 Colorado 8 8675 374
## 2441 2020-04-16 Connecticut 9 15884 971
## 2442 2020-04-16 Delaware 10 2075 52
## 2443 2020-04-16 District of Columbia 11 2350 81
## 2444 2020-04-16 Florida 12 23332 667
## 2445 2020-04-16 Georgia 13 15644 611
## 2446 2020-04-16 Guam 66 790 6
## 2447 2020-04-16 Hawaii 15 535 9
## 2448 2020-04-16 Idaho 16 1609 41
## 2449 2020-04-16 Illinois 17 25734 1081
## 2450 2020-04-16 Indiana 18 9619 554
## 2451 2020-04-16 Iowa 19 2141 60
## 2452 2020-04-16 Kansas 20 1595 80
## 2453 2020-04-16 Kentucky 21 2429 131
## 2454 2020-04-16 Louisiana 22 22532 1156
## 2455 2020-04-16 Maine 23 796 27
## 2456 2020-04-16 Maryland 24 10851 459
## 2457 2020-04-16 Massachusetts 25 32181 1245
## 2458 2020-04-16 Michigan 26 29120 2092
## 2459 2020-04-16 Minnesota 27 1912 94
## 2460 2020-04-16 Mississippi 28 3624 129
## 2461 2020-04-16 Missouri 29 5111 170
## 2462 2020-04-16 Montana 30 415 7
## 2463 2020-04-16 Nebraska 31 1094 24
## 2464 2020-04-16 Nevada 32 3321 142
## 2465 2020-04-16 New Hampshire 33 1211 34
## 2466 2020-04-16 New Jersey 34 75317 3518
## 2467 2020-04-16 New Mexico 35 1597 44
## 2468 2020-04-16 New York 36 225761 15669
## 2469 2020-04-16 North Carolina 37 5463 140
## 2470 2020-04-16 North Dakota 38 393 9
## 2471 2020-04-16 Northern Mariana Islands 69 13 2
## 2472 2020-04-16 Ohio 39 8414 389
## 2473 2020-04-16 Oklahoma 40 2357 131
## 2474 2020-04-16 Oregon 41 1736 64
## 2475 2020-04-16 Pennsylvania 42 28314 940
## 2476 2020-04-16 Puerto Rico 72 1043 56
## 2477 2020-04-16 Rhode Island 44 3838 105
## 2478 2020-04-16 South Carolina 45 3931 109
## 2479 2020-04-16 South Dakota 46 1311 7
## 2480 2020-04-16 Tennessee 47 6077 142
## 2481 2020-04-16 Texas 48 16928 428
## 2482 2020-04-16 Utah 49 2687 21
## 2483 2020-04-16 Vermont 50 768 34
## 2484 2020-04-16 Virgin Islands 78 51 1
## 2485 2020-04-16 Virginia 51 6891 208
## 2486 2020-04-16 Washington 53 11180 588
## 2487 2020-04-16 West Virginia 54 739 13
## 2488 2020-04-16 Wisconsin 55 3875 197
## 2489 2020-04-16 Wyoming 56 393 2
## 2490 2020-04-17 Alabama 1 4572 151
## 2491 2020-04-17 Alaska 2 307 7
## 2492 2020-04-17 Arizona 4 4507 174
## 2493 2020-04-17 Arkansas 5 1695 37
## 2494 2020-04-17 California 6 29398 1050
## 2495 2020-04-17 Colorado 8 9047 389
## 2496 2020-04-17 Connecticut 9 16809 1036
## 2497 2020-04-17 Delaware 10 2323 61
## 2498 2020-04-17 District of Columbia 11 2476 86
## 2499 2020-04-17 Florida 12 24745 725
## 2500 2020-04-17 Georgia 13 16658 661
## 2501 2020-04-17 Guam 66 796 6
## 2502 2020-04-17 Hawaii 15 547 9
## 2503 2020-04-17 Idaho 16 1655 43
## 2504 2020-04-17 Illinois 17 27575 1142
## 2505 2020-04-17 Indiana 18 10235 599
## 2506 2020-04-17 Iowa 19 2332 64
## 2507 2020-04-17 Kansas 20 1732 84
## 2508 2020-04-17 Kentucky 21 2522 140
## 2509 2020-04-17 Louisiana 22 23118 1213
## 2510 2020-04-17 Maine 23 827 29
## 2511 2020-04-17 Maryland 24 11641 494
## 2512 2020-04-17 Massachusetts 25 34402 1404
## 2513 2020-04-17 Michigan 26 29954 2227
## 2514 2020-04-17 Minnesota 27 2071 111
## 2515 2020-04-17 Mississippi 28 3793 140
## 2516 2020-04-17 Missouri 29 5283 184
## 2517 2020-04-17 Montana 30 422 8
## 2518 2020-04-17 Nebraska 31 1216 24
## 2519 2020-04-17 Nevada 32 3524 151
## 2520 2020-04-17 New Hampshire 33 1287 37
## 2521 2020-04-17 New Jersey 34 78467 3840
## 2522 2020-04-17 New Mexico 35 1711 51
## 2523 2020-04-17 New York 36 233293 16473
## 2524 2020-04-17 North Carolina 37 5859 159
## 2525 2020-04-17 North Dakota 38 439 9
## 2526 2020-04-17 Northern Mariana Islands 69 14 2
## 2527 2020-04-17 Ohio 39 9107 418
## 2528 2020-04-17 Oklahoma 40 2465 136
## 2529 2020-04-17 Oregon 41 1785 70
## 2530 2020-04-17 Pennsylvania 42 30121 1027
## 2531 2020-04-17 Puerto Rico 72 1068 58
## 2532 2020-04-17 Rhode Island 44 4177 118
## 2533 2020-04-17 South Carolina 45 4086 116
## 2534 2020-04-17 South Dakota 46 1411 7
## 2535 2020-04-17 Tennessee 47 6423 146
## 2536 2020-04-17 Texas 48 18131 461
## 2537 2020-04-17 Utah 49 2813 23
## 2538 2020-04-17 Vermont 50 779 34
## 2539 2020-04-17 Virgin Islands 78 53 2
## 2540 2020-04-17 Virginia 51 7492 238
## 2541 2020-04-17 Washington 53 11479 610
## 2542 2020-04-17 West Virginia 54 776 16
## 2543 2020-04-17 Wisconsin 55 4045 205
## 2544 2020-04-17 Wyoming 56 401 2
## 2545 2020-04-18 Alabama 1 4723 147
## 2546 2020-04-18 Alaska 2 312 7
## 2547 2020-04-18 Arizona 4 4719 181
## 2548 2020-04-18 Arkansas 5 1777 38
## 2549 2020-04-18 California 6 30829 1146
## 2550 2020-04-18 Colorado 8 9433 409
## 2551 2020-04-18 Connecticut 9 17550 1086
## 2552 2020-04-18 Delaware 10 2538 67
## 2553 2020-04-18 District of Columbia 11 2666 91
## 2554 2020-04-18 Florida 12 25484 747
## 2555 2020-04-18 Georgia 13 17014 670
## 2556 2020-04-18 Guam 66 805 6
## 2557 2020-04-18 Hawaii 15 568 9
## 2558 2020-04-18 Idaho 16 1668 44
## 2559 2020-04-18 Illinois 17 29160 1272
## 2560 2020-04-18 Indiana 18 10730 633
## 2561 2020-04-18 Iowa 19 2513 74
## 2562 2020-04-18 Kansas 20 1820 86
## 2563 2020-04-18 Kentucky 21 2707 145
## 2564 2020-04-18 Louisiana 22 23580 1267
## 2565 2020-04-18 Maine 23 847 32
## 2566 2020-04-18 Maryland 24 12379 534
## 2567 2020-04-18 Massachusetts 25 36372 1560
## 2568 2020-04-18 Michigan 26 30718 2307
## 2569 2020-04-18 Minnesota 27 2213 121
## 2570 2020-04-18 Mississippi 28 3974 152
## 2571 2020-04-18 Missouri 29 5517 194
## 2572 2020-04-18 Montana 30 426 10
## 2573 2020-04-18 Nebraska 31 1348 28
## 2574 2020-04-18 Nevada 32 3626 155
## 2575 2020-04-18 New Hampshire 33 1342 38
## 2576 2020-04-18 New Jersey 34 81420 4070
## 2577 2020-04-18 New Mexico 35 1798 53
## 2578 2020-04-18 New York 36 240542 17141
## 2579 2020-04-18 North Carolina 37 6140 175
## 2580 2020-04-18 North Dakota 38 528 9
## 2581 2020-04-18 Northern Mariana Islands 69 14 2
## 2582 2020-04-18 Ohio 39 10222 451
## 2583 2020-04-18 Oklahoma 40 2570 139
## 2584 2020-04-18 Oregon 41 1844 72
## 2585 2020-04-18 Pennsylvania 42 31742 1150
## 2586 2020-04-18 Puerto Rico 72 1118 60
## 2587 2020-04-18 Rhode Island 44 4491 137
## 2588 2020-04-18 South Carolina 45 4246 119
## 2589 2020-04-18 South Dakota 46 1541 7
## 2590 2020-04-18 Tennessee 47 6624 148
## 2591 2020-04-18 Texas 48 18927 487
## 2592 2020-04-18 Utah 49 2942 25
## 2593 2020-04-18 Vermont 50 803 36
## 2594 2020-04-18 Virgin Islands 78 53 3
## 2595 2020-04-18 Virginia 51 8053 258
## 2596 2020-04-18 Washington 53 11850 629
## 2597 2020-04-18 West Virginia 54 825 18
## 2598 2020-04-18 Wisconsin 55 4199 212
## 2599 2020-04-18 Wyoming 56 412 2
## 2600 2020-04-19 Alabama 1 4903 160
## 2601 2020-04-19 Alaska 2 317 7
## 2602 2020-04-19 Arizona 4 4929 188
## 2603 2020-04-19 Arkansas 5 1781 39
## 2604 2020-04-19 California 6 31544 1176
## 2605 2020-04-19 Colorado 8 9730 421
## 2606 2020-04-19 Connecticut 9 17962 1127
## 2607 2020-04-19 Delaware 10 2538 67
## 2608 2020-04-19 District of Columbia 11 2793 96
## 2609 2020-04-19 Florida 12 26306 773
## 2610 2020-04-19 Georgia 13 17619 682
## 2611 2020-04-19 Guam 66 808 6
## 2612 2020-04-19 Hawaii 15 574 10
## 2613 2020-04-19 Idaho 16 1672 45
## 2614 2020-04-19 Illinois 17 30357 1302
## 2615 2020-04-19 Indiana 18 11301 652
## 2616 2020-04-19 Iowa 19 2915 75
## 2617 2020-04-19 Kansas 20 1897 94
## 2618 2020-04-19 Kentucky 21 2960 149
## 2619 2020-04-19 Louisiana 22 23928 1296
## 2620 2020-04-19 Maine 23 867 34
## 2621 2020-04-19 Maryland 24 12892 548
## 2622 2020-04-19 Massachusetts 25 38077 1706
## 2623 2020-04-19 Michigan 26 31349 2389
## 2624 2020-04-19 Minnesota 27 2356 134
## 2625 2020-04-19 Mississippi 28 4274 159
## 2626 2020-04-19 Missouri 29 5667 196
## 2627 2020-04-19 Montana 30 433 10
## 2628 2020-04-19 Nebraska 31 1473 28
## 2629 2020-04-19 Nevada 32 3710 158
## 2630 2020-04-19 New Hampshire 33 1392 41
## 2631 2020-04-19 New Jersey 34 85301 4202
## 2632 2020-04-19 New Mexico 35 1845 55
## 2633 2020-04-19 New York 36 246741 17793
## 2634 2020-04-19 North Carolina 37 6493 183
## 2635 2020-04-19 North Dakota 38 585 10
## 2636 2020-04-19 Northern Mariana Islands 69 14 2
## 2637 2020-04-19 Ohio 39 11602 471
## 2638 2020-04-19 Oklahoma 40 2599 140
## 2639 2020-04-19 Oregon 41 1910 74
## 2640 2020-04-19 Pennsylvania 42 32992 1285
## 2641 2020-04-19 Puerto Rico 72 1213 41
## 2642 2020-04-19 Rhode Island 44 4706 150
## 2643 2020-04-19 South Carolina 45 4377 120
## 2644 2020-04-19 South Dakota 46 1635 7
## 2645 2020-04-19 Tennessee 47 6824 151
## 2646 2020-04-19 Texas 48 19441 503
## 2647 2020-04-19 Utah 49 3071 27
## 2648 2020-04-19 Vermont 50 812 36
## 2649 2020-04-19 Virgin Islands 78 53 3
## 2650 2020-04-19 Virginia 51 8536 277
## 2651 2020-04-19 Washington 53 11864 637
## 2652 2020-04-19 West Virginia 54 890 20
## 2653 2020-04-19 Wisconsin 55 4346 222
## 2654 2020-04-19 Wyoming 56 422 2
## 2655 2020-04-20 Alabama 1 5078 164
## 2656 2020-04-20 Alaska 2 319 7
## 2657 2020-04-20 Arizona 4 5064 191
## 2658 2020-04-20 Arkansas 5 1971 42
## 2659 2020-04-20 California 6 33862 1223
## 2660 2020-04-20 Colorado 8 10106 448
## 2661 2020-04-20 Connecticut 9 19815 1331
## 2662 2020-04-20 Delaware 10 2745 72
## 2663 2020-04-20 District of Columbia 11 2927 105
## 2664 2020-04-20 Florida 12 27050 822
## 2665 2020-04-20 Georgia 13 18447 767
## 2666 2020-04-20 Guam 66 811 6
## 2667 2020-04-20 Hawaii 15 578 10
## 2668 2020-04-20 Idaho 16 1736 48
## 2669 2020-04-20 Illinois 17 31508 1359
## 2670 2020-04-20 Indiana 18 11784 666
## 2671 2020-04-20 Iowa 19 3175 79
## 2672 2020-04-20 Kansas 20 2030 101
## 2673 2020-04-20 Kentucky 21 3050 155
## 2674 2020-04-20 Louisiana 22 24523 1328
## 2675 2020-04-20 Maine 23 875 35
## 2676 2020-04-20 Maryland 24 13750 582
## 2677 2020-04-20 Massachusetts 25 39643 1809
## 2678 2020-04-20 Michigan 26 31929 2466
## 2679 2020-04-20 Minnesota 27 2470 143
## 2680 2020-04-20 Mississippi 28 4512 169
## 2681 2020-04-20 Missouri 29 5807 201
## 2682 2020-04-20 Montana 30 433 12
## 2683 2020-04-20 Nebraska 31 1646 33
## 2684 2020-04-20 Nevada 32 3830 163
## 2685 2020-04-20 New Hampshire 33 1447 42
## 2686 2020-04-20 New Jersey 34 88806 4377
## 2687 2020-04-20 New Mexico 35 1971 58
## 2688 2020-04-20 New York 36 251608 18412
## 2689 2020-04-20 North Carolina 37 6764 187
## 2690 2020-04-20 North Dakota 38 627 13
## 2691 2020-04-20 Northern Mariana Islands 69 14 2
## 2692 2020-04-20 Ohio 39 12919 509
## 2693 2020-04-20 Oklahoma 40 2680 143
## 2694 2020-04-20 Oregon 41 1956 75
## 2695 2020-04-20 Pennsylvania 42 34005 1366
## 2696 2020-04-20 Puerto Rico 72 1252 42
## 2697 2020-04-20 Rhode Island 44 5090 155
## 2698 2020-04-20 South Carolina 45 4439 124
## 2699 2020-04-20 South Dakota 46 1685 7
## 2700 2020-04-20 Tennessee 47 6994 156
## 2701 2020-04-20 Texas 48 20035 523
## 2702 2020-04-20 Utah 49 3213 28
## 2703 2020-04-20 Vermont 50 816 37
## 2704 2020-04-20 Virgin Islands 78 54 3
## 2705 2020-04-20 Virginia 51 8989 300
## 2706 2020-04-20 Washington 53 12255 661
## 2707 2020-04-20 West Virginia 54 908 26
## 2708 2020-04-20 Wisconsin 55 4564 231
## 2709 2020-04-20 Wyoming 56 426 2
## 2710 2020-04-21 Alabama 1 5327 186
## 2711 2020-04-21 Alaska 2 327 7
## 2712 2020-04-21 Arizona 4 5251 213
## 2713 2020-04-21 Arkansas 5 2262 43
## 2714 2020-04-21 California 6 35844 1316
## 2715 2020-04-21 Colorado 8 10447 484
## 2716 2020-04-21 Connecticut 9 20360 1423
## 2717 2020-04-21 Delaware 10 2931 82
## 2718 2020-04-21 District of Columbia 11 3098 112
## 2719 2020-04-21 Florida 12 27861 866
## 2720 2020-04-21 Georgia 13 19189 810
## 2721 2020-04-21 Guam 66 852 6
## 2722 2020-04-21 Hawaii 15 580 12
## 2723 2020-04-21 Idaho 16 1766 51
## 2724 2020-04-21 Illinois 17 33059 1479
## 2725 2020-04-21 Indiana 18 12214 731
## 2726 2020-04-21 Iowa 19 3641 83
## 2727 2020-04-21 Kansas 20 2114 107
## 2728 2020-04-21 Kentucky 21 3193 172
## 2729 2020-04-21 Louisiana 22 24854 1405
## 2730 2020-04-21 Maine 23 888 36
## 2731 2020-04-21 Maryland 24 14261 652
## 2732 2020-04-21 Massachusetts 25 41199 1961
## 2733 2020-04-21 Michigan 26 32936 2698
## 2734 2020-04-21 Minnesota 27 2567 160
## 2735 2020-04-21 Mississippi 28 4716 183
## 2736 2020-04-21 Missouri 29 5941 221
## 2737 2020-04-21 Montana 30 437 12
## 2738 2020-04-21 Nebraska 31 1726 38
## 2739 2020-04-21 Nevada 32 3937 163
## 2740 2020-04-21 New Hampshire 33 1491 42
## 2741 2020-04-21 New Jersey 34 92387 4753
## 2742 2020-04-21 New Mexico 35 2072 65
## 2743 2020-04-21 New York 36 255932 19040
## 2744 2020-04-21 North Carolina 37 6951 217
## 2745 2020-04-21 North Dakota 38 644 13
## 2746 2020-04-21 Northern Mariana Islands 69 14 2
## 2747 2020-04-21 Ohio 39 13725 557
## 2748 2020-04-21 Oklahoma 40 2807 164
## 2749 2020-04-21 Oregon 41 2002 78
## 2750 2020-04-21 Pennsylvania 42 35384 1620
## 2751 2020-04-21 Puerto Rico 72 915 43
## 2752 2020-04-21 Rhode Island 44 5500 171
## 2753 2020-04-21 South Carolina 45 4608 135
## 2754 2020-04-21 South Dakota 46 1755 8
## 2755 2020-04-21 Tennessee 47 7317 159
## 2756 2020-04-21 Texas 48 20949 552
## 2757 2020-04-21 Utah 49 3301 32
## 2758 2020-04-21 Vermont 50 818 39
## 2759 2020-04-21 Virgin Islands 78 54 3
## 2760 2020-04-21 Virginia 51 9629 325
## 2761 2020-04-21 Washington 53 12410 683
## 2762 2020-04-21 West Virginia 54 929 26
## 2763 2020-04-21 Wisconsin 55 4691 243
## 2764 2020-04-21 Wyoming 56 442 6
## 2765 2020-04-22 Alabama 1 5610 201
## 2766 2020-04-22 Alaska 2 333 7
## 2767 2020-04-22 Arizona 4 5459 236
## 2768 2020-04-22 Arkansas 5 2392 44
## 2769 2020-04-22 California 6 37573 1425
## 2770 2020-04-22 Colorado 8 10878 526
## 2771 2020-04-22 Connecticut 9 22469 1544
## 2772 2020-04-22 Delaware 10 3200 89
## 2773 2020-04-22 District of Columbia 11 3206 127
## 2774 2020-04-22 Florida 12 28301 926
## 2775 2020-04-22 Georgia 13 20099 837
## 2776 2020-04-22 Guam 66 911 6
## 2777 2020-04-22 Hawaii 15 586 12
## 2778 2020-04-22 Idaho 16 1802 54
## 2779 2020-04-22 Illinois 17 35108 1577
## 2780 2020-04-22 Indiana 18 12575 764
## 2781 2020-04-22 Iowa 19 3764 90
## 2782 2020-04-22 Kansas 20 2291 111
## 2783 2020-04-22 Kentucky 21 3373 185
## 2784 2020-04-22 Louisiana 22 25317 1532
## 2785 2020-04-22 Maine 23 907 39
## 2786 2020-04-22 Maryland 24 14842 698
## 2787 2020-04-22 Massachusetts 25 42944 2182
## 2788 2020-04-22 Michigan 26 33973 2813
## 2789 2020-04-22 Minnesota 27 2721 179
## 2790 2020-04-22 Mississippi 28 4894 193
## 2791 2020-04-22 Missouri 29 6137 236
## 2792 2020-04-22 Montana 30 439 14
## 2793 2020-04-22 Nebraska 31 1826 42
## 2794 2020-04-22 Nevada 32 4081 187
## 2795 2020-04-22 New Hampshire 33 1588 48
## 2796 2020-04-22 New Jersey 34 95865 5063
## 2797 2020-04-22 New Mexico 35 2210 71
## 2798 2020-04-22 New York 36 261591 19647
## 2799 2020-04-22 North Carolina 37 7220 242
## 2800 2020-04-22 North Dakota 38 679 14
## 2801 2020-04-22 Northern Mariana Islands 69 14 2
## 2802 2020-04-22 Ohio 39 14117 610
## 2803 2020-04-22 Oklahoma 40 2894 169
## 2804 2020-04-22 Oregon 41 2059 78
## 2805 2020-04-22 Pennsylvania 42 36763 1720
## 2806 2020-04-22 Puerto Rico 72 915 46
## 2807 2020-04-22 Rhode Island 44 5841 181
## 2808 2020-04-22 South Carolina 45 4761 140
## 2809 2020-04-22 South Dakota 46 1858 9
## 2810 2020-04-22 Tennessee 47 7681 169
## 2811 2020-04-22 Texas 48 21769 571
## 2812 2020-04-22 Utah 49 3451 34
## 2813 2020-04-22 Vermont 50 823 39
## 2814 2020-04-22 Virgin Islands 78 54 3
## 2815 2020-04-22 Virginia 51 10265 349
## 2816 2020-04-22 Washington 53 12606 696
## 2817 2020-04-22 West Virginia 54 939 29
## 2818 2020-04-22 Wisconsin 55 4915 247
## 2819 2020-04-22 Wyoming 56 447 6
## 2820 2020-04-23 Alabama 1 5832 197
## 2821 2020-04-23 Alaska 2 335 7
## 2822 2020-04-23 Arizona 4 5769 257
## 2823 2020-04-23 Arkansas 5 2599 45
## 2824 2020-04-23 California 6 39534 1548
## 2825 2020-04-23 Colorado 8 11262 557
## 2826 2020-04-23 Connecticut 9 23100 1639
## 2827 2020-04-23 Delaware 10 3308 92
## 2828 2020-04-23 District of Columbia 11 3361 139
## 2829 2020-04-23 Florida 12 29640 986
## 2830 2020-04-23 Georgia 13 20905 871
## 2831 2020-04-23 Guam 66 979 6
## 2832 2020-04-23 Hawaii 15 590 12
## 2833 2020-04-23 Idaho 16 1836 54
## 2834 2020-04-23 Illinois 17 36935 1696
## 2835 2020-04-23 Indiana 18 13196 811
## 2836 2020-04-23 Iowa 19 3939 96
## 2837 2020-04-23 Kansas 20 2626 112
## 2838 2020-04-23 Kentucky 21 3548 194
## 2839 2020-04-23 Louisiana 22 25798 1599
## 2840 2020-04-23 Maine 23 937 44
## 2841 2020-04-23 Maryland 24 15805 748
## 2842 2020-04-23 Massachusetts 25 46023 2360
## 2843 2020-04-23 Michigan 26 35253 2977
## 2844 2020-04-23 Minnesota 27 2942 200
## 2845 2020-04-23 Mississippi 28 5153 201
## 2846 2020-04-23 Missouri 29 6321 248
## 2847 2020-04-23 Montana 30 442 14
## 2848 2020-04-23 Nebraska 31 2190 46
## 2849 2020-04-23 Nevada 32 4208 195
## 2850 2020-04-23 New Hampshire 33 1670 51
## 2851 2020-04-23 New Jersey 34 99989 5368
## 2852 2020-04-23 New Mexico 35 2379 78
## 2853 2020-04-23 New York 36 267932 20212
## 2854 2020-04-23 North Carolina 37 7608 253
## 2855 2020-04-23 North Dakota 38 709 15
## 2856 2020-04-23 Northern Mariana Islands 69 14 2
## 2857 2020-04-23 Ohio 39 14694 656
## 2858 2020-04-23 Oklahoma 40 3017 179
## 2859 2020-04-23 Oregon 41 2127 83
## 2860 2020-04-23 Pennsylvania 42 38334 1723
## 2861 2020-04-23 Puerto Rico 72 1230 69
## 2862 2020-04-23 Rhode Island 44 6256 189
## 2863 2020-04-23 South Carolina 45 4917 150
## 2864 2020-04-23 South Dakota 46 1956 9
## 2865 2020-04-23 Tennessee 47 8169 172
## 2866 2020-04-23 Texas 48 22706 601
## 2867 2020-04-23 Utah 49 3621 35
## 2868 2020-04-23 Vermont 50 825 42
## 2869 2020-04-23 Virgin Islands 78 54 3
## 2870 2020-04-23 Virginia 51 10999 375
## 2871 2020-04-23 Washington 53 12981 717
## 2872 2020-04-23 West Virginia 54 981 31
## 2873 2020-04-23 Wisconsin 55 5125 257
## 2874 2020-04-23 Wyoming 56 453 7
## 2875 2020-04-24 Alabama 1 6026 209
## 2876 2020-04-24 Alaska 2 337 7
## 2877 2020-04-24 Arizona 4 6045 268
## 2878 2020-04-24 Arkansas 5 2810 47
## 2879 2020-04-24 California 6 41368 1619
## 2880 2020-04-24 Colorado 8 12255 672
## 2881 2020-04-24 Connecticut 9 23921 1764
## 2882 2020-04-24 Delaware 10 3442 100
## 2883 2020-04-24 District of Columbia 11 3528 153
## 2884 2020-04-24 Florida 12 30525 1045
## 2885 2020-04-24 Georgia 13 21575 889
## 2886 2020-04-24 Guam 66 997 6
## 2887 2020-04-24 Hawaii 15 595 13
## 2888 2020-04-24 Idaho 16 1870 54
## 2889 2020-04-24 Illinois 17 39658 1804
## 2890 2020-04-24 Indiana 18 13848 851
## 2891 2020-04-24 Iowa 19 4459 107
## 2892 2020-04-24 Kansas 20 2842 117
## 2893 2020-04-24 Kentucky 21 3779 203
## 2894 2020-04-24 Louisiana 22 26199 1660
## 2895 2020-04-24 Maine 23 965 47
## 2896 2020-04-24 Maryland 24 16693 798
## 2897 2020-04-24 Massachusetts 25 50969 2556
## 2898 2020-04-24 Michigan 26 36628 3084
## 2899 2020-04-24 Minnesota 27 3185 221
## 2900 2020-04-24 Mississippi 28 5434 209
## 2901 2020-04-24 Missouri 29 6625 267
## 2902 2020-04-24 Montana 30 444 14
## 2903 2020-04-24 Nebraska 31 2474 50
## 2904 2020-04-24 Nevada 32 4398 203
## 2905 2020-04-24 New Hampshire 33 1720 53
## 2906 2020-04-24 New Jersey 34 102196 5617
## 2907 2020-04-24 New Mexico 35 2524 84
## 2908 2020-04-24 New York 36 276218 20759
## 2909 2020-04-24 North Carolina 37 8052 270
## 2910 2020-04-24 North Dakota 38 748 15
## 2911 2020-04-24 Northern Mariana Islands 69 14 2
## 2912 2020-04-24 Ohio 39 15169 690
## 2913 2020-04-24 Oklahoma 40 3120 188
## 2914 2020-04-24 Oregon 41 2177 86
## 2915 2020-04-24 Pennsylvania 42 40298 1786
## 2916 2020-04-24 Puerto Rico 72 1276 77
## 2917 2020-04-24 Rhode Island 44 6699 202
## 2918 2020-04-24 South Carolina 45 5070 157
## 2919 2020-04-24 South Dakota 46 2040 10
## 2920 2020-04-24 Tennessee 47 8618 172
## 2921 2020-04-24 Texas 48 23650 625
## 2922 2020-04-24 Utah 49 3782 39
## 2923 2020-04-24 Vermont 50 827 43
## 2924 2020-04-24 Virgin Islands 78 55 3
## 2925 2020-04-24 Virginia 51 11595 413
## 2926 2020-04-24 Washington 53 13197 731
## 2927 2020-04-24 West Virginia 54 1010 32
## 2928 2020-04-24 Wisconsin 55 5431 262
## 2929 2020-04-24 Wyoming 56 473 7
## 2930 2020-04-25 Alabama 1 6213 213
## 2931 2020-04-25 Alaska 2 337 7
## 2932 2020-04-25 Arizona 4 6280 275
## 2933 2020-04-25 Arkansas 5 2909 48
## 2934 2020-04-25 California 6 42590 1692
## 2935 2020-04-25 Colorado 8 12967 670
## 2936 2020-04-25 Connecticut 9 24582 1862
## 2937 2020-04-25 Delaware 10 3576 112
## 2938 2020-04-25 District of Columbia 11 3699 165
## 2939 2020-04-25 Florida 12 30831 1054
## 2940 2020-04-25 Georgia 13 22225 897
## 2941 2020-04-25 Guam 66 997 6
## 2942 2020-04-25 Hawaii 15 597 14
## 2943 2020-04-25 Idaho 16 1887 56
## 2944 2020-04-25 Illinois 17 41777 1884
## 2945 2020-04-25 Indiana 18 14567 897
## 2946 2020-04-25 Iowa 19 5109 112
## 2947 2020-04-25 Kansas 20 3091 119
## 2948 2020-04-25 Kentucky 21 3905 208
## 2949 2020-04-25 Louisiana 22 26571 1703
## 2950 2020-04-25 Maine 23 990 50
## 2951 2020-04-25 Maryland 24 17844 875
## 2952 2020-04-25 Massachusetts 25 53348 2730
## 2953 2020-04-25 Michigan 26 37302 3273
## 2954 2020-04-25 Minnesota 27 3446 244
## 2955 2020-04-25 Mississippi 28 5718 221
## 2956 2020-04-25 Missouri 29 6826 280
## 2957 2020-04-25 Montana 30 445 14
## 2958 2020-04-25 Nebraska 31 2898 52
## 2959 2020-04-25 Nevada 32 4539 206
## 2960 2020-04-25 New Hampshire 33 1793 60
## 2961 2020-04-25 New Jersey 34 105523 5863
## 2962 2020-04-25 New Mexico 35 2662 93
## 2963 2020-04-25 New York 36 286901 21326
## 2964 2020-04-25 North Carolina 37 8548 304
## 2965 2020-04-25 North Dakota 38 803 16
## 2966 2020-04-25 Northern Mariana Islands 69 14 2
## 2967 2020-04-25 Ohio 39 15587 711
## 2968 2020-04-25 Oklahoma 40 3193 194
## 2969 2020-04-25 Oregon 41 2253 87
## 2970 2020-04-25 Pennsylvania 42 41626 1842
## 2971 2020-04-25 Puerto Rico 72 1307 83
## 2972 2020-04-25 Rhode Island 44 7129 215
## 2973 2020-04-25 South Carolina 45 5253 166
## 2974 2020-04-25 South Dakota 46 2147 10
## 2975 2020-04-25 Tennessee 47 8918 179
## 2976 2020-04-25 Texas 48 24494 662
## 2977 2020-04-25 Utah 49 3950 41
## 2978 2020-04-25 Vermont 50 843 45
## 2979 2020-04-25 Virgin Islands 78 57 3
## 2980 2020-04-25 Virginia 51 12365 436
## 2981 2020-04-25 Washington 53 13565 743
## 2982 2020-04-25 West Virginia 54 1025 33
## 2983 2020-04-25 Wisconsin 55 5762 266
## 2984 2020-04-25 Wyoming 56 477 7
## 2985 2020-04-26 Alabama 1 6421 219
## 2986 2020-04-26 Alaska 2 339 7
## 2987 2020-04-26 Arizona 4 6526 277
## 2988 2020-04-26 Arkansas 5 3001 50
## 2989 2020-04-26 California 6 43691 1716
## 2990 2020-04-26 Colorado 8 13440 678
## 2991 2020-04-26 Connecticut 9 25269 1925
## 2992 2020-04-26 Delaware 10 4034 120
## 2993 2020-04-26 District of Columbia 11 3841 178
## 2994 2020-04-26 Florida 12 31520 1073
## 2995 2020-04-26 Georgia 13 22459 907
## 2996 2020-04-26 Guam 66 997 6
## 2997 2020-04-26 Hawaii 15 599 14
## 2998 2020-04-26 Idaho 16 1897 56
## 2999 2020-04-26 Illinois 17 43903 1943
## 3000 2020-04-26 Indiana 18 15187 928
## 3001 2020-04-26 Iowa 19 5490 118
## 3002 2020-04-26 Kansas 20 3198 120
## 3003 2020-04-26 Kentucky 21 4074 211
## 3004 2020-04-26 Louisiana 22 26832 1729
## 3005 2020-04-26 Maine 23 1015 50
## 3006 2020-04-26 Maryland 24 18664 910
## 3007 2020-04-26 Massachusetts 25 54938 2899
## 3008 2020-04-26 Michigan 26 38003 3314
## 3009 2020-04-26 Minnesota 27 3602 272
## 3010 2020-04-26 Mississippi 28 5911 227
## 3011 2020-04-26 Missouri 29 6997 282
## 3012 2020-04-26 Montana 30 448 14
## 3013 2020-04-26 Nebraska 31 3126 54
## 3014 2020-04-26 Nevada 32 4638 206
## 3015 2020-04-26 New Hampshire 33 1864 60
## 3016 2020-04-26 New Jersey 34 109038 5938
## 3017 2020-04-26 New Mexico 35 2728 99
## 3018 2020-04-26 New York 36 292914 21804
## 3019 2020-04-26 North Carolina 37 8830 309
## 3020 2020-04-26 North Dakota 38 867 17
## 3021 2020-04-26 Northern Mariana Islands 69 14 2
## 3022 2020-04-26 Ohio 39 15963 728
## 3023 2020-04-26 Oklahoma 40 3253 195
## 3024 2020-04-26 Oregon 41 2311 91
## 3025 2020-04-26 Pennsylvania 42 42709 1871
## 3026 2020-04-26 Puerto Rico 72 1371 84
## 3027 2020-04-26 Rhode Island 44 7439 226
## 3028 2020-04-26 South Carolina 45 5490 174
## 3029 2020-04-26 South Dakota 46 2213 11
## 3030 2020-04-26 Tennessee 47 9435 182
## 3031 2020-04-26 Texas 48 25209 676
## 3032 2020-04-26 Utah 49 4123 41
## 3033 2020-04-26 Vermont 50 851 45
## 3034 2020-04-26 Virgin Islands 78 59 4
## 3035 2020-04-26 Virginia 51 12969 448
## 3036 2020-04-26 Washington 53 13744 757
## 3037 2020-04-26 West Virginia 54 1054 34
## 3038 2020-04-26 Wisconsin 55 5986 274
## 3039 2020-04-26 Wyoming 56 502 7
## 3040 2020-04-27 Alabama 1 6539 228
## 3041 2020-04-27 Alaska 2 343 7
## 3042 2020-04-27 Arizona 4 6716 277
## 3043 2020-04-27 Arkansas 5 3069 51
## 3044 2020-04-27 California 6 45208 1800
## 3045 2020-04-27 Colorado 8 13804 705
## 3046 2020-04-27 Connecticut 9 25997 2012
## 3047 2020-04-27 Delaware 10 4162 125
## 3048 2020-04-27 District of Columbia 11 3892 185
## 3049 2020-04-27 Florida 12 32130 1087
## 3050 2020-04-27 Georgia 13 23229 981
## 3051 2020-04-27 Guam 66 1113 6
## 3052 2020-04-27 Hawaii 15 600 16
## 3053 2020-04-27 Idaho 16 1917 58
## 3054 2020-04-27 Illinois 17 45883 1992
## 3055 2020-04-27 Indiana 18 16137 932
## 3056 2020-04-27 Iowa 19 5868 127
## 3057 2020-04-27 Kansas 20 3407 126
## 3058 2020-04-27 Kentucky 21 4146 216
## 3059 2020-04-27 Louisiana 22 27111 1740
## 3060 2020-04-27 Maine 23 1023 51
## 3061 2020-04-27 Maryland 24 19574 945
## 3062 2020-04-27 Massachusetts 25 56462 3003
## 3063 2020-04-27 Michigan 26 38457 3406
## 3064 2020-04-27 Minnesota 27 3816 286
## 3065 2020-04-27 Mississippi 28 6094 229
## 3066 2020-04-27 Missouri 29 7171 296
## 3067 2020-04-27 Montana 30 449 14
## 3068 2020-04-27 Nebraska 31 3487 54
## 3069 2020-04-27 Nevada 32 4708 219
## 3070 2020-04-27 New Hampshire 33 1938 60
## 3071 2020-04-27 New Jersey 34 111188 6044
## 3072 2020-04-27 New Mexico 35 2825 104
## 3073 2020-04-27 New York 36 296991 22267
## 3074 2020-04-27 North Carolina 37 9035 331
## 3075 2020-04-27 North Dakota 38 942 19
## 3076 2020-04-27 Northern Mariana Islands 69 14 2
## 3077 2020-04-27 Ohio 39 16325 753
## 3078 2020-04-27 Oklahoma 40 3280 197
## 3079 2020-04-27 Oregon 41 2354 92
## 3080 2020-04-27 Pennsylvania 42 43728 1946
## 3081 2020-04-27 Puerto Rico 72 1388 84
## 3082 2020-04-27 Rhode Island 44 7708 233
## 3083 2020-04-27 South Carolina 45 5613 177
## 3084 2020-04-27 South Dakota 46 2246 11
## 3085 2020-04-27 Tennessee 47 9739 184
## 3086 2020-04-27 Texas 48 25963 699
## 3087 2020-04-27 Utah 49 4236 41
## 3088 2020-04-27 Vermont 50 855 46
## 3089 2020-04-27 Virgin Islands 78 59 4
## 3090 2020-04-27 Virginia 51 13534 458
## 3091 2020-04-27 Washington 53 13958 771
## 3092 2020-04-27 West Virginia 54 1078 37
## 3093 2020-04-27 Wisconsin 55 6164 281
## 3094 2020-04-27 Wyoming 56 520 7
## 3095 2020-04-28 Alabama 1 6750 242
## 3096 2020-04-28 Alaska 2 349 7
## 3097 2020-04-28 Arizona 4 6948 297
## 3098 2020-04-28 Arkansas 5 3127 57
## 3099 2020-04-28 California 6 46570 1884
## 3100 2020-04-28 Colorado 8 14239 734
## 3101 2020-04-28 Connecticut 9 26312 2089
## 3102 2020-04-28 Delaware 10 4575 137
## 3103 2020-04-28 District of Columbia 11 3994 190
## 3104 2020-04-28 Florida 12 32838 1170
## 3105 2020-04-28 Georgia 13 23607 1022
## 3106 2020-04-28 Guam 66 1114 6
## 3107 2020-04-28 Hawaii 15 602 16
## 3108 2020-04-28 Idaho 16 1952 60
## 3109 2020-04-28 Illinois 17 48102 2132
## 3110 2020-04-28 Indiana 18 16783 992
## 3111 2020-04-28 Iowa 19 6376 136
## 3112 2020-04-28 Kansas 20 3601 127
## 3113 2020-04-28 Kentucky 21 4375 231
## 3114 2020-04-28 Louisiana 22 27329 1801
## 3115 2020-04-28 Maine 23 1040 51
## 3116 2020-04-28 Maryland 24 20200 1016
## 3117 2020-04-28 Massachusetts 25 58302 3153
## 3118 2020-04-28 Michigan 26 39469 3566
## 3119 2020-04-28 Minnesota 27 4181 301
## 3120 2020-04-28 Mississippi 28 6342 239
## 3121 2020-04-28 Missouri 29 7306 324
## 3122 2020-04-28 Montana 30 451 15
## 3123 2020-04-28 Nebraska 31 3613 56
## 3124 2020-04-28 Nevada 32 4812 225
## 3125 2020-04-28 New Hampshire 33 2010 60
## 3126 2020-04-28 New Jersey 34 113856 6442
## 3127 2020-04-28 New Mexico 35 2975 110
## 3128 2020-04-28 New York 36 300276 22777
## 3129 2020-04-28 North Carolina 37 9568 353
## 3130 2020-04-28 North Dakota 38 991 19
## 3131 2020-04-28 Northern Mariana Islands 69 14 2
## 3132 2020-04-28 Ohio 39 16769 799
## 3133 2020-04-28 Oklahoma 40 3410 207
## 3134 2020-04-28 Oregon 41 2385 99
## 3135 2020-04-28 Pennsylvania 42 45323 2092
## 3136 2020-04-28 Puerto Rico 72 1400 86
## 3137 2020-04-28 Rhode Island 44 7926 239
## 3138 2020-04-28 South Carolina 45 5735 192
## 3139 2020-04-28 South Dakota 46 2314 11
## 3140 2020-04-28 Tennessee 47 9974 190
## 3141 2020-04-28 Texas 48 26868 738
## 3142 2020-04-28 Utah 49 4343 45
## 3143 2020-04-28 Vermont 50 862 46
## 3144 2020-04-28 Virgin Islands 78 62 4
## 3145 2020-04-28 Virginia 51 14340 492
## 3146 2020-04-28 Washington 53 14165 792
## 3147 2020-04-28 West Virginia 54 1096 38
## 3148 2020-04-28 Wisconsin 55 6389 300
## 3149 2020-04-28 Wyoming 56 536 7
## 3150 2020-04-29 Alabama 1 6925 262
## 3151 2020-04-29 Alaska 2 353 7
## 3152 2020-04-29 Arizona 4 7202 308
## 3153 2020-04-29 Arkansas 5 3207 59
## 3154 2020-04-29 California 6 48904 1961
## 3155 2020-04-29 Colorado 8 14680 764
## 3156 2020-04-29 Connecticut 9 26767 2168
## 3157 2020-04-29 Delaware 10 4655 144
## 3158 2020-04-29 District of Columbia 11 4106 205
## 3159 2020-04-29 Florida 12 33185 1216
## 3160 2020-04-29 Georgia 13 24300 1086
## 3161 2020-04-29 Guam 66 1114 6
## 3162 2020-04-29 Hawaii 15 605 16
## 3163 2020-04-29 Idaho 16 1984 60
## 3164 2020-04-29 Illinois 17 50355 2221
## 3165 2020-04-29 Indiana 18 17409 1065
## 3166 2020-04-29 Iowa 19 6843 148
## 3167 2020-04-29 Kansas 20 3811 132
## 3168 2020-04-29 Kentucky 21 4538 235
## 3169 2020-04-29 Louisiana 22 27703 1845
## 3170 2020-04-29 Maine 23 1056 52
## 3171 2020-04-29 Maryland 24 20942 1078
## 3172 2020-04-29 Massachusetts 25 60265 3405
## 3173 2020-04-29 Michigan 26 40443 3670
## 3174 2020-04-29 Minnesota 27 4644 319
## 3175 2020-04-29 Mississippi 28 6569 250
## 3176 2020-04-29 Missouri 29 7426 331
## 3177 2020-04-29 Montana 30 451 16
## 3178 2020-04-29 Nebraska 31 3876 67
## 3179 2020-04-29 Nevada 32 4934 237
## 3180 2020-04-29 New Hampshire 33 2054 66
## 3181 2020-04-29 New Jersey 34 116264 6770
## 3182 2020-04-29 New Mexico 35 3213 112
## 3183 2020-04-29 New York 36 304994 23287
## 3184 2020-04-29 North Carolina 37 9947 366
## 3185 2020-04-29 North Dakota 38 1033 19
## 3186 2020-04-29 Northern Mariana Islands 69 14 2
## 3187 2020-04-29 Ohio 39 17303 937
## 3188 2020-04-29 Oklahoma 40 3473 214
## 3189 2020-04-29 Oregon 41 2446 101
## 3190 2020-04-29 Pennsylvania 42 46191 2392
## 3191 2020-04-29 Puerto Rico 72 1465 86
## 3192 2020-04-29 Rhode Island 44 8247 251
## 3193 2020-04-29 South Carolina 45 5881 232
## 3194 2020-04-29 South Dakota 46 2375 13
## 3195 2020-04-29 Tennessee 47 10255 196
## 3196 2020-04-29 Texas 48 27839 776
## 3197 2020-04-29 Utah 49 4499 45
## 3198 2020-04-29 Vermont 50 862 46
## 3199 2020-04-29 Virgin Islands 78 66 4
## 3200 2020-04-29 Virginia 51 14963 522
## 3201 2020-04-29 Washington 53 14490 805
## 3202 2020-04-29 West Virginia 54 1110 40
## 3203 2020-04-29 Wisconsin 55 6621 308
## 3204 2020-04-29 Wyoming 56 544 7
## 3205 2020-04-30 Alabama 1 7068 272
## 3206 2020-04-30 Alaska 2 353 7
## 3207 2020-04-30 Arizona 4 7648 320
## 3208 2020-04-30 Arkansas 5 3281 61
## 3209 2020-04-30 California 6 50470 2057
## 3210 2020-04-30 Colorado 8 15207 775
## 3211 2020-04-30 Connecticut 9 27700 2257
## 3212 2020-04-30 Delaware 10 4734 152
## 3213 2020-04-30 District of Columbia 11 4323 224
## 3214 2020-04-30 Florida 12 33683 1267
## 3215 2020-04-30 Georgia 13 25431 1121
## 3216 2020-04-30 Guam 66 1115 6
## 3217 2020-04-30 Hawaii 15 609 16
## 3218 2020-04-30 Idaho 16 2016 63
## 3219 2020-04-30 Illinois 17 52918 2361
## 3220 2020-04-30 Indiana 18 18099 1114
## 3221 2020-04-30 Iowa 19 7145 162
## 3222 2020-04-30 Kansas 20 4305 133
## 3223 2020-04-30 Kentucky 21 4708 240
## 3224 2020-04-30 Louisiana 22 28044 1905
## 3225 2020-04-30 Maine 23 1095 53
## 3226 2020-04-30 Maryland 24 21825 1139
## 3227 2020-04-30 Massachusetts 25 62205 3562
## 3228 2020-04-30 Michigan 26 41348 3788
## 3229 2020-04-30 Minnesota 27 5136 343
## 3230 2020-04-30 Mississippi 28 6815 261
## 3231 2020-04-30 Missouri 29 7563 341
## 3232 2020-04-30 Montana 30 452 16
## 3233 2020-04-30 Nebraska 31 4332 70
## 3234 2020-04-30 Nevada 32 5053 243
## 3235 2020-04-30 New Hampshire 33 2146 72
## 3236 2020-04-30 New Jersey 34 118652 7228
## 3237 2020-04-30 New Mexico 35 3411 123
## 3238 2020-04-30 New York 36 309696 23616
## 3239 2020-04-30 North Carolina 37 10507 385
## 3240 2020-04-30 North Dakota 38 1067 19
## 3241 2020-04-30 Northern Mariana Islands 69 14 2
## 3242 2020-04-30 Ohio 39 18027 975
## 3243 2020-04-30 Oklahoma 40 3618 222
## 3244 2020-04-30 Oregon 41 2510 103
## 3245 2020-04-30 Pennsylvania 42 48224 2580
## 3246 2020-04-30 Puerto Rico 72 1537 92
## 3247 2020-04-30 Rhode Island 44 8621 266
## 3248 2020-04-30 South Carolina 45 6095 244
## 3249 2020-04-30 South Dakota 46 2450 17
## 3250 2020-04-30 Tennessee 47 10506 200
## 3251 2020-04-30 Texas 48 29072 828
## 3252 2020-04-30 Utah 49 4672 46
## 3253 2020-04-30 Vermont 50 866 48
## 3254 2020-04-30 Virgin Islands 78 66 4
## 3255 2020-04-30 Virginia 51 15848 552
## 3256 2020-04-30 Washington 53 14814 822
## 3257 2020-04-30 West Virginia 54 1126 44
## 3258 2020-04-30 Wisconsin 55 6973 316
## 3259 2020-04-30 Wyoming 56 559 7
## 3260 2020-05-01 Alabama 1 7294 289
## 3261 2020-05-01 Alaska 2 362 7
## 3262 2020-05-01 Arizona 4 7962 330
## 3263 2020-05-01 Arkansas 5 3310 64
## 3264 2020-05-01 California 6 52318 2147
## 3265 2020-05-01 Colorado 8 15661 818
## 3266 2020-05-01 Connecticut 9 28764 2339
## 3267 2020-05-01 Delaware 10 4918 159
## 3268 2020-05-01 District of Columbia 11 4658 231
## 3269 2020-05-01 Florida 12 34720 1313
## 3270 2020-05-01 Georgia 13 26436 1153
## 3271 2020-05-01 Guam 66 1115 6
## 3272 2020-05-01 Hawaii 15 610 16
## 3273 2020-05-01 Idaho 16 2035 63
## 3274 2020-05-01 Illinois 17 56055 2464
## 3275 2020-05-01 Indiana 18 18941 1175
## 3276 2020-05-01 Iowa 19 7883 170
## 3277 2020-05-01 Kansas 20 4510 136
## 3278 2020-05-01 Kentucky 21 4879 248
## 3279 2020-05-01 Louisiana 22 28754 1970
## 3280 2020-05-01 Maine 23 1123 55
## 3281 2020-05-01 Maryland 24 23566 1192
## 3282 2020-05-01 Massachusetts 25 64311 3716
## 3283 2020-05-01 Michigan 26 42348 3866
## 3284 2020-05-01 Minnesota 27 5730 371
## 3285 2020-05-01 Mississippi 28 7212 281
## 3286 2020-05-01 Missouri 29 7840 355
## 3287 2020-05-01 Montana 30 452 16
## 3288 2020-05-01 Nebraska 31 4838 72
## 3289 2020-05-01 Nevada 32 5249 254
## 3290 2020-05-01 New Hampshire 33 2310 81
## 3291 2020-05-01 New Jersey 34 121190 7538
## 3292 2020-05-01 New Mexico 35 3513 131
## 3293 2020-05-01 New York 36 313575 23841
## 3294 2020-05-01 North Carolina 37 10922 405
## 3295 2020-05-01 North Dakota 38 1107 23
## 3296 2020-05-01 Northern Mariana Islands 69 14 2
## 3297 2020-05-01 Ohio 39 18743 1002
## 3298 2020-05-01 Oklahoma 40 3748 230
## 3299 2020-05-01 Oregon 41 2579 104
## 3300 2020-05-01 Pennsylvania 42 49764 2671
## 3301 2020-05-01 Puerto Rico 72 1573 94
## 3302 2020-05-01 Rhode Island 44 8962 279
## 3303 2020-05-01 South Carolina 45 6258 256
## 3304 2020-05-01 South Dakota 46 2525 21
## 3305 2020-05-01 Tennessee 47 11781 205
## 3306 2020-05-01 Texas 48 30342 853
## 3307 2020-05-01 Utah 49 4829 46
## 3308 2020-05-01 Vermont 50 879 49
## 3309 2020-05-01 Virgin Islands 78 66 4
## 3310 2020-05-01 Virginia 51 16903 581
## 3311 2020-05-01 Washington 53 15134 829
## 3312 2020-05-01 West Virginia 54 1152 47
## 3313 2020-05-01 Wisconsin 55 7439 327
## 3314 2020-05-01 Wyoming 56 566 7
## 3315 2020-05-02 Alabama 1 7611 288
## 3316 2020-05-02 Alaska 2 363 7
## 3317 2020-05-02 Arizona 4 8364 353
## 3318 2020-05-02 Arkansas 5 3372 72
## 3319 2020-05-02 California 6 53753 2213
## 3320 2020-05-02 Colorado 8 16118 830
## 3321 2020-05-02 Connecticut 9 29287 2436
## 3322 2020-05-02 Delaware 10 5038 168
## 3323 2020-05-02 District of Columbia 11 4797 240
## 3324 2020-05-02 Florida 12 35455 1363
## 3325 2020-05-02 Georgia 13 27268 1161
## 3326 2020-05-02 Guam 66 1117 6
## 3327 2020-05-02 Hawaii 15 611 16
## 3328 2020-05-02 Idaho 16 2061 64
## 3329 2020-05-02 Illinois 17 58505 2576
## 3330 2020-05-02 Indiana 18 19629 1229
## 3331 2020-05-02 Iowa 19 8641 175
## 3332 2020-05-02 Kansas 20 4863 140
## 3333 2020-05-02 Kentucky 21 4881 252
## 3334 2020-05-02 Louisiana 22 29183 1993
## 3335 2020-05-02 Maine 23 1152 56
## 3336 2020-05-02 Maryland 24 24568 1251
## 3337 2020-05-02 Massachusetts 25 66263 3846
## 3338 2020-05-02 Michigan 26 43191 4020
## 3339 2020-05-02 Minnesota 27 6228 395
## 3340 2020-05-02 Mississippi 28 7441 291
## 3341 2020-05-02 Missouri 29 8154 373
## 3342 2020-05-02 Montana 30 454 16
## 3343 2020-05-02 Nebraska 31 5332 75
## 3344 2020-05-02 Nevada 32 5390 257
## 3345 2020-05-02 New Hampshire 33 2429 84
## 3346 2020-05-02 New Jersey 34 123717 7742
## 3347 2020-05-02 New Mexico 35 3732 139
## 3348 2020-05-02 New York 36 318134 24035
## 3349 2020-05-02 North Carolina 37 11514 428
## 3350 2020-05-02 North Dakota 38 1153 24
## 3351 2020-05-02 Northern Mariana Islands 69 14 2
## 3352 2020-05-02 Ohio 39 19335 1021
## 3353 2020-05-02 Oklahoma 40 3851 238
## 3354 2020-05-02 Oregon 41 2635 109
## 3355 2020-05-02 Pennsylvania 42 51071 2794
## 3356 2020-05-02 Puerto Rico 72 1755 95
## 3357 2020-05-02 Rhode Island 44 9289 296
## 3358 2020-05-02 South Carolina 45 6489 267
## 3359 2020-05-02 South Dakota 46 2587 21
## 3360 2020-05-02 Tennessee 47 12376 210
## 3361 2020-05-02 Texas 48 31433 875
## 3362 2020-05-02 Utah 49 4981 49
## 3363 2020-05-02 Vermont 50 886 50
## 3364 2020-05-02 Virgin Islands 78 66 4
## 3365 2020-05-02 Virginia 51 17733 616
## 3366 2020-05-02 Washington 53 15383 833
## 3367 2020-05-02 West Virginia 54 1185 50
## 3368 2020-05-02 Wisconsin 55 7785 334
## 3369 2020-05-02 Wyoming 56 579 7
## 3370 2020-05-03 Alabama 1 7888 290
## 3371 2020-05-03 Alaska 2 366 7
## 3372 2020-05-03 Arizona 4 8640 362
## 3373 2020-05-03 Arkansas 5 3431 76
## 3374 2020-05-03 California 6 55072 2235
## 3375 2020-05-03 Colorado 8 16527 840
## 3376 2020-05-03 Connecticut 9 29287 2436
## 3377 2020-05-03 Delaware 10 5208 177
## 3378 2020-05-03 District of Columbia 11 5016 251
## 3379 2020-05-03 Florida 12 36070 1378
## 3380 2020-05-03 Georgia 13 27618 1168
## 3381 2020-05-03 Guam 66 1118 6
## 3382 2020-05-03 Hawaii 15 611 17
## 3383 2020-05-03 Idaho 16 2059 64
## 3384 2020-05-03 Illinois 17 61499 2632
## 3385 2020-05-03 Indiana 18 20267 1246
## 3386 2020-05-03 Iowa 19 9169 184
## 3387 2020-05-03 Kansas 20 5177 142
## 3388 2020-05-03 Kentucky 21 5223 256
## 3389 2020-05-03 Louisiana 22 29383 2012
## 3390 2020-05-03 Maine 23 1185 57
## 3391 2020-05-03 Maryland 24 25561 1281
## 3392 2020-05-03 Massachusetts 25 68087 4004
## 3393 2020-05-03 Michigan 26 43803 4049
## 3394 2020-05-03 Minnesota 27 6663 419
## 3395 2020-05-03 Mississippi 28 7550 303
## 3396 2020-05-03 Missouri 29 8454 378
## 3397 2020-05-03 Montana 30 454 16
## 3398 2020-05-03 Nebraska 31 5686 77
## 3399 2020-05-03 Nevada 32 5473 262
## 3400 2020-05-03 New Hampshire 33 2518 86
## 3401 2020-05-03 New Jersey 34 126744 7871
## 3402 2020-05-03 New Mexico 35 3850 151
## 3403 2020-05-03 New York 36 321833 24576
## 3404 2020-05-03 North Carolina 37 11668 436
## 3405 2020-05-03 North Dakota 38 1191 25
## 3406 2020-05-03 Northern Mariana Islands 69 14 2
## 3407 2020-05-03 Ohio 39 19914 1038
## 3408 2020-05-03 Oklahoma 40 3972 238
## 3409 2020-05-03 Oregon 41 2680 109
## 3410 2020-05-03 Pennsylvania 42 52079 2843
## 3411 2020-05-03 Puerto Rico 72 1806 97
## 3412 2020-05-03 Rhode Island 44 9477 320
## 3413 2020-05-03 South Carolina 45 6626 275
## 3414 2020-05-03 South Dakota 46 2630 21
## 3415 2020-05-03 Tennessee 47 12871 211
## 3416 2020-05-03 Texas 48 32299 890
## 3417 2020-05-03 Utah 49 5175 50
## 3418 2020-05-03 Vermont 50 897 52
## 3419 2020-05-03 Virgin Islands 78 66 4
## 3420 2020-05-03 Virginia 51 18673 660
## 3421 2020-05-03 Washington 53 15943 840
## 3422 2020-05-03 West Virginia 54 1196 50
## 3423 2020-05-03 Wisconsin 55 8089 339
## 3424 2020-05-03 Wyoming 56 586 7
## 3425 2020-05-04 Alabama 1 8112 298
## 3426 2020-05-04 Alaska 2 368 7
## 3427 2020-05-04 Arizona 4 8919 362
## 3428 2020-05-04 Arkansas 5 3469 80
## 3429 2020-05-04 California 6 56333 2297
## 3430 2020-05-04 Colorado 8 16799 849
## 3431 2020-05-04 Connecticut 9 29973 2556
## 3432 2020-05-04 Delaware 10 5288 182
## 3433 2020-05-04 District of Columbia 11 5170 258
## 3434 2020-05-04 Florida 12 36889 1398
## 3435 2020-05-04 Georgia 13 28350 1228
## 3436 2020-05-04 Guam 66 1118 6
## 3437 2020-05-04 Hawaii 15 612 17
## 3438 2020-05-04 Idaho 16 2106 64
## 3439 2020-05-04 Illinois 17 63840 2673
## 3440 2020-05-04 Indiana 18 20855 1264
## 3441 2020-05-04 Iowa 19 9703 188
## 3442 2020-05-04 Kansas 20 5385 154
## 3443 2020-05-04 Kentucky 21 5370 267
## 3444 2020-05-04 Louisiana 22 29746 2064
## 3445 2020-05-04 Maine 23 1205 57
## 3446 2020-05-04 Maryland 24 26509 1317
## 3447 2020-05-04 Massachusetts 25 69087 4090
## 3448 2020-05-04 Michigan 26 43996 4135
## 3449 2020-05-04 Minnesota 27 7234 428
## 3450 2020-05-04 Mississippi 28 7877 310
## 3451 2020-05-04 Missouri 29 8776 387
## 3452 2020-05-04 Montana 30 456 16
## 3453 2020-05-04 Nebraska 31 6123 78
## 3454 2020-05-04 Nevada 32 5627 266
## 3455 2020-05-04 New Hampshire 33 2588 86
## 3456 2020-05-04 New Jersey 34 128269 7910
## 3457 2020-05-04 New Mexico 35 4030 156
## 3458 2020-05-04 New York 36 324357 24788
## 3459 2020-05-04 North Carolina 37 11871 454
## 3460 2020-05-04 North Dakota 38 1225 25
## 3461 2020-05-04 Northern Mariana Islands 69 14 2
## 3462 2020-05-04 Ohio 39 20474 1056
## 3463 2020-05-04 Oklahoma 40 4044 238
## 3464 2020-05-04 Oregon 41 2759 109
## 3465 2020-05-04 Pennsylvania 42 52992 2880
## 3466 2020-05-04 Puerto Rico 72 1875 97
## 3467 2020-05-04 Rhode Island 44 9652 341
## 3468 2020-05-04 South Carolina 45 6757 283
## 3469 2020-05-04 South Dakota 46 2667 21
## 3470 2020-05-04 Tennessee 47 13283 216
## 3471 2020-05-04 Texas 48 33134 914
## 3472 2020-05-04 Utah 49 5326 50
## 3473 2020-05-04 Vermont 50 902 52
## 3474 2020-05-04 Virgin Islands 78 66 4
## 3475 2020-05-04 Virginia 51 19494 684
## 3476 2020-05-04 Washington 53 16047 846
## 3477 2020-05-04 West Virginia 54 1225 50
## 3478 2020-05-04 Wisconsin 55 8362 340
## 3479 2020-05-04 Wyoming 56 596 7
## 3480 2020-05-05 Alabama 1 8437 315
## 3481 2020-05-05 Alaska 2 369 7
## 3482 2020-05-05 Arizona 4 9305 395
## 3483 2020-05-05 Arkansas 5 3525 83
## 3484 2020-05-05 California 6 58848 2386
## 3485 2020-05-05 Colorado 8 17256 901
## 3486 2020-05-05 Connecticut 9 30621 2633
## 3487 2020-05-05 Delaware 10 5371 187
## 3488 2020-05-05 District of Columbia 11 5322 264
## 3489 2020-05-05 Florida 12 37431 1470
## 3490 2020-05-05 Georgia 13 28876 1277
## 3491 2020-05-05 Guam 66 1118 6
## 3492 2020-05-05 Hawaii 15 615 17
## 3493 2020-05-05 Idaho 16 2127 66
## 3494 2020-05-05 Illinois 17 65889 2843
## 3495 2020-05-05 Indiana 18 21423 1326
## 3496 2020-05-05 Iowa 19 10111 207
## 3497 2020-05-05 Kansas 20 5627 160
## 3498 2020-05-05 Kentucky 21 5822 278
## 3499 2020-05-05 Louisiana 22 30069 2115
## 3500 2020-05-05 Maine 23 1226 61
## 3501 2020-05-05 Maryland 24 27217 1390
## 3502 2020-05-05 Massachusetts 25 70271 4212
## 3503 2020-05-05 Michigan 26 44391 4179
## 3504 2020-05-05 Minnesota 27 7851 455
## 3505 2020-05-05 Mississippi 28 8207 342
## 3506 2020-05-05 Missouri 29 8919 408
## 3507 2020-05-05 Montana 30 456 16
## 3508 2020-05-05 Nebraska 31 6442 81
## 3509 2020-05-05 Nevada 32 5665 276
## 3510 2020-05-05 New Hampshire 33 2636 92
## 3511 2020-05-05 New Jersey 34 130593 8244
## 3512 2020-05-05 New Mexico 35 4137 162
## 3513 2020-05-05 New York 36 326659 25028
## 3514 2020-05-05 North Carolina 37 12283 477
## 3515 2020-05-05 North Dakota 38 1266 25
## 3516 2020-05-05 Northern Mariana Islands 69 14 2
## 3517 2020-05-05 Ohio 39 20969 1135
## 3518 2020-05-05 Oklahoma 40 4127 247
## 3519 2020-05-05 Oregon 41 2839 113
## 3520 2020-05-05 Pennsylvania 42 53967 3206
## 3521 2020-05-05 Puerto Rico 72 1922 99
## 3522 2020-05-05 Rhode Island 44 9933 355
## 3523 2020-05-05 South Carolina 45 6841 296
## 3524 2020-05-05 South Dakota 46 2720 24
## 3525 2020-05-05 Tennessee 47 13555 225
## 3526 2020-05-05 Texas 48 34286 955
## 3527 2020-05-05 Utah 49 5449 56
## 3528 2020-05-05 Vermont 50 907 52
## 3529 2020-05-05 Virgin Islands 78 66 4
## 3530 2020-05-05 Virginia 51 20258 713
## 3531 2020-05-05 Washington 53 16234 863
## 3532 2020-05-05 West Virginia 54 1243 50
## 3533 2020-05-05 Wisconsin 55 8696 353
## 3534 2020-05-05 Wyoming 56 604 7
## 3535 2020-05-06 Alabama 1 8691 343
## 3536 2020-05-06 Alaska 2 370 8
## 3537 2020-05-06 Arizona 4 9707 426
## 3538 2020-05-06 Arkansas 5 3611 87
## 3539 2020-05-06 California 6 60787 2478
## 3540 2020-05-06 Colorado 8 17720 919
## 3541 2020-05-06 Connecticut 9 30995 2718
## 3542 2020-05-06 Delaware 10 5778 193
## 3543 2020-05-06 District of Columbia 11 5461 277
## 3544 2020-05-06 Florida 12 37994 1538
## 3545 2020-05-06 Georgia 13 29724 1309
## 3546 2020-05-06 Guam 66 1118 6
## 3547 2020-05-06 Hawaii 15 616 17
## 3548 2020-05-06 Idaho 16 2158 67
## 3549 2020-05-06 Illinois 17 68164 2977
## 3550 2020-05-06 Indiana 18 22286 1377
## 3551 2020-05-06 Iowa 19 10404 219
## 3552 2020-05-06 Kansas 20 5893 163
## 3553 2020-05-06 Kentucky 21 5946 286
## 3554 2020-05-06 Louisiana 22 30472 2167
## 3555 2020-05-06 Maine 23 1254 62
## 3556 2020-05-06 Maryland 24 28263 1443
## 3557 2020-05-06 Massachusetts 25 72025 4420
## 3558 2020-05-06 Michigan 26 45079 4250
## 3559 2020-05-06 Minnesota 27 8579 485
## 3560 2020-05-06 Mississippi 28 8424 374
## 3561 2020-05-06 Missouri 29 9164 429
## 3562 2020-05-06 Montana 30 456 16
## 3563 2020-05-06 Nebraska 31 6771 85
## 3564 2020-05-06 Nevada 32 5744 286
## 3565 2020-05-06 New Hampshire 33 2741 111
## 3566 2020-05-06 New Jersey 34 131890 8549
## 3567 2020-05-06 New Mexico 35 4290 169
## 3568 2020-05-06 New York 36 329405 25956
## 3569 2020-05-06 North Carolina 37 12783 497
## 3570 2020-05-06 North Dakota 38 1323 31
## 3571 2020-05-06 Northern Mariana Islands 69 15 2
## 3572 2020-05-06 Ohio 39 21576 1225
## 3573 2020-05-06 Oklahoma 40 4201 253
## 3574 2020-05-06 Oregon 41 2916 115
## 3575 2020-05-06 Pennsylvania 42 54989 3360
## 3576 2020-05-06 Puerto Rico 72 1968 99
## 3577 2020-05-06 Rhode Island 44 10205 370
## 3578 2020-05-06 South Carolina 45 6936 305
## 3579 2020-05-06 South Dakota 46 2779 29
## 3580 2020-05-06 Tennessee 47 13737 237
## 3581 2020-05-06 Texas 48 35441 985
## 3582 2020-05-06 Utah 49 5605 59
## 3583 2020-05-06 Vermont 50 908 52
## 3584 2020-05-06 Virgin Islands 78 66 4
## 3585 2020-05-06 Virginia 51 20258 713
## 3586 2020-05-06 Washington 53 16873 881
## 3587 2020-05-06 West Virginia 54 1277 51
## 3588 2020-05-06 Wisconsin 55 9052 362
## 3589 2020-05-06 Wyoming 56 631 7
## 3590 2020-05-07 Alabama 1 9046 369
## 3591 2020-05-07 Alaska 2 373 8
## 3592 2020-05-07 Arizona 4 9945 450
## 3593 2020-05-07 Arkansas 5 3694 88
## 3594 2020-05-07 California 6 62481 2561
## 3595 2020-05-07 Colorado 8 18264 942
## 3596 2020-05-07 Connecticut 9 31784 2797
## 3597 2020-05-07 Delaware 10 5939 202
## 3598 2020-05-07 District of Columbia 11 5654 285
## 3599 2020-05-07 Florida 12 38820 1599
## 3600 2020-05-07 Georgia 13 30524 1332
## 3601 2020-05-07 Guam 66 1118 6
## 3602 2020-05-07 Hawaii 15 619 17
## 3603 2020-05-07 Idaho 16 2178 67
## 3604 2020-05-07 Illinois 17 70802 3139
## 3605 2020-05-07 Indiana 18 22942 1414
## 3606 2020-05-07 Iowa 19 11059 231
## 3607 2020-05-07 Kansas 20 6240 164
## 3608 2020-05-07 Kentucky 21 6173 302
## 3609 2020-05-07 Louisiana 22 30725 2208
## 3610 2020-05-07 Maine 23 1330 62
## 3611 2020-05-07 Maryland 24 29476 1503
## 3612 2020-05-07 Massachusetts 25 73721 4552
## 3613 2020-05-07 Michigan 26 45643 4343
## 3614 2020-05-07 Minnesota 27 9364 508
## 3615 2020-05-07 Mississippi 28 8686 396
## 3616 2020-05-07 Missouri 29 9409 449
## 3617 2020-05-07 Montana 30 456 16
## 3618 2020-05-07 Nebraska 31 7190 91
## 3619 2020-05-07 Nevada 32 5858 293
## 3620 2020-05-07 New Hampshire 33 2843 114
## 3621 2020-05-07 New Jersey 34 133635 8801
## 3622 2020-05-07 New Mexico 35 4492 172
## 3623 2020-05-07 New York 36 332931 26206
## 3624 2020-05-07 North Carolina 37 13431 521
## 3625 2020-05-07 North Dakota 38 1371 31
## 3626 2020-05-07 Northern Mariana Islands 69 15 2
## 3627 2020-05-07 Ohio 39 22131 1271
## 3628 2020-05-07 Oklahoma 40 4330 260
## 3629 2020-05-07 Oregon 41 2989 121
## 3630 2020-05-07 Pennsylvania 42 56149 3599
## 3631 2020-05-07 Puerto Rico 72 2031 102
## 3632 2020-05-07 Rhode Island 44 10530 388
## 3633 2020-05-07 South Carolina 45 7142 316
## 3634 2020-05-07 South Dakota 46 2905 31
## 3635 2020-05-07 Tennessee 47 14108 238
## 3636 2020-05-07 Texas 48 36682 1016
## 3637 2020-05-07 Utah 49 5724 61
## 3638 2020-05-07 Vermont 50 916 53
## 3639 2020-05-07 Virgin Islands 78 68 4
## 3640 2020-05-07 Virginia 51 21570 769
## 3641 2020-05-07 Washington 53 17187 903
## 3642 2020-05-07 West Virginia 54 1298 51
## 3643 2020-05-07 Wisconsin 55 9369 374
## 3644 2020-05-07 Wyoming 56 635 7
## 3645 2020-05-08 Alabama 1 9385 383
## 3646 2020-05-08 Alaska 2 376 8
## 3647 2020-05-08 Arizona 4 10526 517
## 3648 2020-05-08 Arkansas 5 3747 88
## 3649 2020-05-08 California 6 64616 2650
## 3650 2020-05-08 Colorado 8 18719 958
## 3651 2020-05-08 Connecticut 9 32411 2874
## 3652 2020-05-08 Delaware 10 6083 213
## 3653 2020-05-08 District of Columbia 11 5899 304
## 3654 2020-05-08 Florida 12 39191 1668
## 3655 2020-05-08 Georgia 13 31089 1378
## 3656 2020-05-08 Guam 66 1120 6
## 3657 2020-05-08 Hawaii 15 619 17
## 3658 2020-05-08 Idaho 16 2205 67
## 3659 2020-05-08 Illinois 17 73688 3262
## 3660 2020-05-08 Indiana 18 23620 1447
## 3661 2020-05-08 Iowa 19 11457 243
## 3662 2020-05-08 Kansas 20 6751 167
## 3663 2020-05-08 Kentucky 21 6298 304
## 3664 2020-05-08 Louisiana 22 30928 2227
## 3665 2020-05-08 Maine 23 1374 63
## 3666 2020-05-08 Maryland 24 30592 1560
## 3667 2020-05-08 Massachusetts 25 75333 4702
## 3668 2020-05-08 Michigan 26 46319 4393
## 3669 2020-05-08 Minnesota 27 10087 534
## 3670 2020-05-08 Mississippi 28 9090 409
## 3671 2020-05-08 Missouri 29 9573 481
## 3672 2020-05-08 Montana 30 458 16
## 3673 2020-05-08 Nebraska 31 7830 92
## 3674 2020-05-08 Nevada 32 5942 301
## 3675 2020-05-08 New Hampshire 33 2947 121
## 3676 2020-05-08 New Jersey 34 135454 8952
## 3677 2020-05-08 New Mexico 35 4673 181
## 3678 2020-05-08 New York 36 335804 26358
## 3679 2020-05-08 North Carolina 37 13879 537
## 3680 2020-05-08 North Dakota 38 1425 33
## 3681 2020-05-08 Northern Mariana Islands 69 15 2
## 3682 2020-05-08 Ohio 39 23018 1306
## 3683 2020-05-08 Oklahoma 40 4424 266
## 3684 2020-05-08 Oregon 41 3068 124
## 3685 2020-05-08 Pennsylvania 42 57501 3724
## 3686 2020-05-08 Puerto Rico 72 2156 107
## 3687 2020-05-08 Rhode Island 44 10779 399
## 3688 2020-05-08 South Carolina 45 7367 320
## 3689 2020-05-08 South Dakota 46 3144 31
## 3690 2020-05-08 Tennessee 47 14276 240
## 3691 2020-05-08 Texas 48 37943 1059
## 3692 2020-05-08 Utah 49 5919 61
## 3693 2020-05-08 Vermont 50 919 53
## 3694 2020-05-08 Virgin Islands 78 69 4
## 3695 2020-05-08 Virginia 51 22342 812
## 3696 2020-05-08 Washington 53 17477 915
## 3697 2020-05-08 West Virginia 54 1324 52
## 3698 2020-05-08 Wisconsin 55 9750 384
## 3699 2020-05-08 Wyoming 56 644 7
## 3700 2020-05-09 Alabama 1 9668 390
## 3701 2020-05-09 Alaska 2 377 8
## 3702 2020-05-09 Arizona 4 10960 532
## 3703 2020-05-09 Arkansas 5 3747 88
## 3704 2020-05-09 California 6 66824 2732
## 3705 2020-05-09 Colorado 8 19267 965
## 3706 2020-05-09 Connecticut 9 32984 2932
## 3707 2020-05-09 Delaware 10 6277 221
## 3708 2020-05-09 District of Columbia 11 6102 311
## 3709 2020-05-09 Florida 12 39993 1714
## 3710 2020-05-09 Georgia 13 31481 1380
## 3711 2020-05-09 Guam 66 1120 6
## 3712 2020-05-09 Hawaii 15 620 17
## 3713 2020-05-09 Idaho 16 2230 67
## 3714 2020-05-09 Illinois 17 76008 3362
## 3715 2020-05-09 Indiana 18 24239 1490
## 3716 2020-05-09 Iowa 19 11671 252
## 3717 2020-05-09 Kansas 20 6923 172
## 3718 2020-05-09 Kentucky 21 6469 312
## 3719 2020-05-09 Louisiana 22 31490 2267
## 3720 2020-05-09 Maine 23 1408 64
## 3721 2020-05-09 Maryland 24 31638 1614
## 3722 2020-05-09 Massachusetts 25 76743 4840
## 3723 2020-05-09 Michigan 26 46735 4526
## 3724 2020-05-09 Minnesota 27 10789 558
## 3725 2020-05-09 Mississippi 28 9378 421
## 3726 2020-05-09 Missouri 29 9737 492
## 3727 2020-05-09 Montana 30 458 16
## 3728 2020-05-09 Nebraska 31 8233 95
## 3729 2020-05-09 Nevada 32 6046 306
## 3730 2020-05-09 New Hampshire 33 3011 131
## 3731 2020-05-09 New Jersey 34 137085 9116
## 3732 2020-05-09 New Mexico 35 4778 191
## 3733 2020-05-09 New York 36 338519 26584
## 3734 2020-05-09 North Carolina 37 14387 554
## 3735 2020-05-09 North Dakota 38 1464 35
## 3736 2020-05-09 Northern Mariana Islands 69 16 2
## 3737 2020-05-09 Ohio 39 23697 1331
## 3738 2020-05-09 Oklahoma 40 4490 270
## 3739 2020-05-09 Oregon 41 3160 127
## 3740 2020-05-09 Pennsylvania 42 58661 3793
## 3741 2020-05-09 Puerto Rico 72 2173 108
## 3742 2020-05-09 Rhode Island 44 10989 418
## 3743 2020-05-09 South Carolina 45 7531 330
## 3744 2020-05-09 South Dakota 46 3393 34
## 3745 2020-05-09 Tennessee 47 14675 241
## 3746 2020-05-09 Texas 48 38849 1086
## 3747 2020-05-09 Utah 49 6103 66
## 3748 2020-05-09 Vermont 50 921 53
## 3749 2020-05-09 Virgin Islands 78 69 4
## 3750 2020-05-09 Virginia 51 23196 827
## 3751 2020-05-09 Washington 53 17629 925
## 3752 2020-05-09 West Virginia 54 1348 53
## 3753 2020-05-09 Wisconsin 55 10099 398
## 3754 2020-05-09 Wyoming 56 653 7
## 3755 2020-05-10 Alabama 1 9889 393
## 3756 2020-05-10 Alaska 2 378 8
## 3757 2020-05-10 Arizona 4 11119 536
## 3758 2020-05-10 Arkansas 5 4012 91
## 3759 2020-05-10 California 6 68051 2769
## 3760 2020-05-10 Colorado 8 19595 969
## 3761 2020-05-10 Connecticut 9 33554 2967
## 3762 2020-05-10 Delaware 10 6447 224
## 3763 2020-05-10 District of Columbia 11 6272 323
## 3764 2020-05-10 Florida 12 40588 1720
## 3765 2020-05-10 Georgia 13 32267 1383
## 3766 2020-05-10 Guam 66 1120 6
## 3767 2020-05-10 Hawaii 15 621 17
## 3768 2020-05-10 Idaho 16 2232 67
## 3769 2020-05-10 Illinois 17 77662 3426
## 3770 2020-05-10 Indiana 18 24633 1508
## 3771 2020-05-10 Iowa 19 11959 265
## 3772 2020-05-10 Kansas 20 7045 172
## 3773 2020-05-10 Kentucky 21 6486 312
## 3774 2020-05-10 Louisiana 22 31673 2286
## 3775 2020-05-10 Maine 23 1436 64
## 3776 2020-05-10 Maryland 24 32693 1644
## 3777 2020-05-10 Massachusetts 25 77793 4979
## 3778 2020-05-10 Michigan 26 47116 4551
## 3779 2020-05-10 Minnesota 27 11270 578
## 3780 2020-05-10 Mississippi 28 9501 430
## 3781 2020-05-10 Missouri 29 9906 502
## 3782 2020-05-10 Montana 30 458 16
## 3783 2020-05-10 Nebraska 31 8328 97
## 3784 2020-05-10 Nevada 32 6120 306
## 3785 2020-05-10 New Hampshire 33 3071 133
## 3786 2020-05-10 New Jersey 34 138532 9255
## 3787 2020-05-10 New Mexico 35 4863 200
## 3788 2020-05-10 New York 36 340657 26798
## 3789 2020-05-10 North Carolina 37 14783 561
## 3790 2020-05-10 North Dakota 38 1491 35
## 3791 2020-05-10 Northern Mariana Islands 69 16 2
## 3792 2020-05-10 Ohio 39 24086 1341
## 3793 2020-05-10 Oklahoma 40 4589 272
## 3794 2020-05-10 Oregon 41 3228 127
## 3795 2020-05-10 Pennsylvania 42 60037 3819
## 3796 2020-05-10 Puerto Rico 72 2198 111
## 3797 2020-05-10 Rhode Island 44 11274 422
## 3798 2020-05-10 South Carolina 45 7653 331
## 3799 2020-05-10 South Dakota 46 3517 34
## 3800 2020-05-10 Tennessee 47 15060 242
## 3801 2020-05-10 Texas 48 40037 1110
## 3802 2020-05-10 Utah 49 6251 67
## 3803 2020-05-10 Vermont 50 926 53
## 3804 2020-05-10 Virgin Islands 78 69 4
## 3805 2020-05-10 Virginia 51 24081 839
## 3806 2020-05-10 Washington 53 17781 939
## 3807 2020-05-10 West Virginia 54 1363 54
## 3808 2020-05-10 Wisconsin 55 10379 400
## 3809 2020-05-10 Wyoming 56 662 7
## 3810 2020-05-11 Alabama 1 10164 403
## 3811 2020-05-11 Alaska 2 380 8
## 3812 2020-05-11 Arizona 4 11380 542
## 3813 2020-05-11 Arkansas 5 4043 94
## 3814 2020-05-11 California 6 69514 2820
## 3815 2020-05-11 Colorado 8 19793 986
## 3816 2020-05-11 Connecticut 9 33765 3008
## 3817 2020-05-11 Delaware 10 6565 225
## 3818 2020-05-11 District of Columbia 11 6389 328
## 3819 2020-05-11 Florida 12 40974 1734
## 3820 2020-05-11 Georgia 13 32448 1420
## 3821 2020-05-11 Guam 66 1120 6
## 3822 2020-05-11 Hawaii 15 623 17
## 3823 2020-05-11 Idaho 16 2261 69
## 3824 2020-05-11 Illinois 17 79123 3480
## 3825 2020-05-11 Indiana 18 25134 1540
## 3826 2020-05-11 Iowa 19 12373 271
## 3827 2020-05-11 Kansas 20 7161 174
## 3828 2020-05-11 Kentucky 21 6710 325
## 3829 2020-05-11 Louisiana 22 31881 2308
## 3830 2020-05-11 Maine 23 1462 65
## 3831 2020-05-11 Maryland 24 33483 1683
## 3832 2020-05-11 Massachusetts 25 78462 5108
## 3833 2020-05-11 Michigan 26 47526 4584
## 3834 2020-05-11 Minnesota 27 11798 591
## 3835 2020-05-11 Mississippi 28 9674 435
## 3836 2020-05-11 Missouri 29 10025 512
## 3837 2020-05-11 Montana 30 459 16
## 3838 2020-05-11 Nebraska 31 8575 99
## 3839 2020-05-11 Nevada 32 6152 312
## 3840 2020-05-11 New Hampshire 33 3160 133
## 3841 2020-05-11 New Jersey 34 139945 9310
## 3842 2020-05-11 New Mexico 35 5069 208
## 3843 2020-05-11 New York 36 342267 27003
## 3844 2020-05-11 North Carolina 37 15069 571
## 3845 2020-05-11 North Dakota 38 1518 36
## 3846 2020-05-11 Northern Mariana Islands 69 19 2
## 3847 2020-05-11 Ohio 39 24785 1357
## 3848 2020-05-11 Oklahoma 40 4613 274
## 3849 2020-05-11 Oregon 41 3286 130
## 3850 2020-05-11 Pennsylvania 42 60557 3846
## 3851 2020-05-11 Puerto Rico 72 2256 113
## 3852 2020-05-11 Rhode Island 44 11450 430
## 3853 2020-05-11 South Carolina 45 7792 346
## 3854 2020-05-11 South Dakota 46 3614 34
## 3855 2020-05-11 Tennessee 47 15423 248
## 3856 2020-05-11 Texas 48 40988 1137
## 3857 2020-05-11 Utah 49 6364 68
## 3858 2020-05-11 Vermont 50 926 53
## 3859 2020-05-11 Virgin Islands 78 69 5
## 3860 2020-05-11 Virginia 51 25070 850
## 3861 2020-05-11 Washington 53 18172 957
## 3862 2020-05-11 West Virginia 54 1370 57
## 3863 2020-05-11 Wisconsin 55 10581 409
## 3864 2020-05-11 Wyoming 56 669 7
## 3865 2020-05-12 Alabama 1 10464 435
## 3866 2020-05-12 Alaska 2 383 8
## 3867 2020-05-12 Arizona 4 11736 562
## 3868 2020-05-12 Arkansas 5 4164 95
## 3869 2020-05-12 California 6 71150 2902
## 3870 2020-05-12 Colorado 8 20103 1009
## 3871 2020-05-12 Connecticut 9 34333 3041
## 3872 2020-05-12 Delaware 10 6741 237
## 3873 2020-05-12 District of Columbia 11 6485 336
## 3874 2020-05-12 Florida 12 41915 1778
## 3875 2020-05-12 Georgia 13 33311 1470
## 3876 2020-05-12 Guam 66 1121 6
## 3877 2020-05-12 Hawaii 15 624 17
## 3878 2020-05-12 Idaho 16 2294 69
## 3879 2020-05-12 Illinois 17 83168 3617
## 3880 2020-05-12 Indiana 18 25676 1578
## 3881 2020-05-12 Iowa 19 12912 289
## 3882 2020-05-12 Kansas 20 7352 178
## 3883 2020-05-12 Kentucky 21 7003 333
## 3884 2020-05-12 Louisiana 22 32116 2347
## 3885 2020-05-12 Maine 23 1477 65
## 3886 2020-05-12 Maryland 24 34174 1756
## 3887 2020-05-12 Massachusetts 25 79332 5141
## 3888 2020-05-12 Michigan 26 47946 4674
## 3889 2020-05-12 Minnesota 27 12493 614
## 3890 2020-05-12 Mississippi 28 9908 457
## 3891 2020-05-12 Missouri 29 10124 528
## 3892 2020-05-12 Montana 30 461 16
## 3893 2020-05-12 Nebraska 31 8732 102
## 3894 2020-05-12 Nevada 32 6311 321
## 3895 2020-05-12 New Hampshire 33 3239 142
## 3896 2020-05-12 New Jersey 34 140743 9508
## 3897 2020-05-12 New Mexico 35 5212 219
## 3898 2020-05-12 New York 36 343705 27282
## 3899 2020-05-12 North Carolina 37 15402 597
## 3900 2020-05-12 North Dakota 38 1571 38
## 3901 2020-05-12 Northern Mariana Islands 69 19 2
## 3902 2020-05-12 Ohio 39 25257 1436
## 3903 2020-05-12 Oklahoma 40 4731 278
## 3904 2020-05-12 Oregon 41 3359 130
## 3905 2020-05-12 Pennsylvania 42 61407 3924
## 3906 2020-05-12 Puerto Rico 72 2299 114
## 3907 2020-05-12 Rhode Island 44 11614 444
## 3908 2020-05-12 South Carolina 45 7927 355
## 3909 2020-05-12 South Dakota 46 3663 39
## 3910 2020-05-12 Tennessee 47 15777 264
## 3911 2020-05-12 Texas 48 42348 1169
## 3912 2020-05-12 Utah 49 6454 73
## 3913 2020-05-12 Vermont 50 927 53
## 3914 2020-05-12 Virgin Islands 78 69 6
## 3915 2020-05-12 Virginia 51 25800 891
## 3916 2020-05-12 Washington 53 18382 972
## 3917 2020-05-12 West Virginia 54 1379 58
## 3918 2020-05-12 Wisconsin 55 10781 418
## 3919 2020-05-12 Wyoming 56 675 7
## 3920 2020-05-13 Alabama 1 10700 450
## 3921 2020-05-13 Alaska 2 383 8
## 3922 2020-05-13 Arizona 4 12176 594
## 3923 2020-05-13 Arkansas 5 4236 97
## 3924 2020-05-13 California 6 73218 3014
## 3925 2020-05-13 Colorado 8 20442 1062
## 3926 2020-05-13 Connecticut 9 34855 3125
## 3927 2020-05-13 Delaware 10 6952 247
## 3928 2020-05-13 District of Columbia 11 6584 350
## 3929 2020-05-13 Florida 12 42394 1826
## 3930 2020-05-13 Georgia 13 33866 1494
## 3931 2020-05-13 Guam 66 1121 6
## 3932 2020-05-13 Hawaii 15 627 17
## 3933 2020-05-13 Idaho 16 2325 69
## 3934 2020-05-13 Illinois 17 84874 3815
## 3935 2020-05-13 Indiana 18 26044 1619
## 3936 2020-05-13 Iowa 19 13289 306
## 3937 2020-05-13 Kansas 20 7552 179
## 3938 2020-05-13 Kentucky 21 7102 334
## 3939 2020-05-13 Louisiana 22 32728 2381
## 3940 2020-05-13 Maine 23 1515 66
## 3941 2020-05-13 Maryland 24 34927 1809
## 3942 2020-05-13 Massachusetts 25 80497 5315
## 3943 2020-05-13 Michigan 26 48307 4714
## 3944 2020-05-13 Minnesota 27 12916 638
## 3945 2020-05-13 Mississippi 28 10090 465
## 3946 2020-05-13 Missouri 29 10369 548
## 3947 2020-05-13 Montana 30 462 16
## 3948 2020-05-13 Nebraska 31 9072 106
## 3949 2020-05-13 Nevada 32 6482 331
## 3950 2020-05-13 New Hampshire 33 3299 150
## 3951 2020-05-13 New Jersey 34 141560 9702
## 3952 2020-05-13 New Mexico 35 5364 231
## 3953 2020-05-13 New York 36 345828 27448
## 3954 2020-05-13 North Carolina 37 15850 615
## 3955 2020-05-13 North Dakota 38 1647 40
## 3956 2020-05-13 Northern Mariana Islands 69 19 2
## 3957 2020-05-13 Ohio 39 25727 1483
## 3958 2020-05-13 Oklahoma 40 4852 278
## 3959 2020-05-13 Oregon 41 3416 134
## 3960 2020-05-13 Pennsylvania 42 62194 4104
## 3961 2020-05-13 Puerto Rico 72 2329 115
## 3962 2020-05-13 Rhode Island 44 11835 462
## 3963 2020-05-13 South Carolina 45 8030 362
## 3964 2020-05-13 South Dakota 46 3732 39
## 3965 2020-05-13 Tennessee 47 16261 271
## 3966 2020-05-13 Texas 48 43822 1205
## 3967 2020-05-13 Utah 49 6624 76
## 3968 2020-05-13 Vermont 50 929 53
## 3969 2020-05-13 Virgin Islands 78 69 6
## 3970 2020-05-13 Virginia 51 26746 927
## 3971 2020-05-13 Washington 53 18492 977
## 3972 2020-05-13 West Virginia 54 1405 59
## 3973 2020-05-13 Wisconsin 55 11071 421
## 3974 2020-05-13 Wyoming 56 688 7
## 3975 2020-05-14 Alabama 1 11101 473
## 3976 2020-05-14 Alaska 2 387 8
## 3977 2020-05-14 Arizona 4 12674 624
## 3978 2020-05-14 Arkansas 5 4366 98
## 3979 2020-05-14 California 6 74947 3039
## 3980 2020-05-14 Colorado 8 20813 1091
## 3981 2020-05-14 Connecticut 9 35464 3219
## 3982 2020-05-14 Delaware 10 7223 260
## 3983 2020-05-14 District of Columbia 11 6736 358
## 3984 2020-05-14 Florida 12 43202 1874
## 3985 2020-05-14 Georgia 13 34422 1521
## 3986 2020-05-14 Guam 66 1121 6
## 3987 2020-05-14 Hawaii 15 627 17
## 3988 2020-05-14 Idaho 16 2352 72
## 3989 2020-05-14 Illinois 17 88081 3945
## 3990 2020-05-14 Indiana 18 26627 1646
## 3991 2020-05-14 Iowa 19 13675 318
## 3992 2020-05-14 Kansas 20 7668 181
## 3993 2020-05-14 Kentucky 21 7397 341
## 3994 2020-05-14 Louisiana 22 33555 2417
## 3995 2020-05-14 Maine 23 1565 69
## 3996 2020-05-14 Maryland 24 36021 1866
## 3997 2020-05-14 Massachusetts 25 82182 5482
## 3998 2020-05-14 Michigan 26 49489 4787
## 3999 2020-05-14 Minnesota 27 13443 672
## 4000 2020-05-14 Mississippi 28 10483 480
## 4001 2020-05-14 Missouri 29 10490 564
## 4002 2020-05-14 Montana 30 462 16
## 4003 2020-05-14 Nebraska 31 9411 117
## 4004 2020-05-14 Nevada 32 6604 339
## 4005 2020-05-14 New Hampshire 33 3382 151
## 4006 2020-05-14 New Jersey 34 142704 9946
## 4007 2020-05-14 New Mexico 35 5503 242
## 4008 2020-05-14 New York 36 348192 27617
## 4009 2020-05-14 North Carolina 37 16593 632
## 4010 2020-05-14 North Dakota 38 1712 40
## 4011 2020-05-14 Northern Mariana Islands 69 19 2
## 4012 2020-05-14 Ohio 39 26363 1534
## 4013 2020-05-14 Oklahoma 40 4962 284
## 4014 2020-05-14 Oregon 41 3479 137
## 4015 2020-05-14 Pennsylvania 42 63158 4298
## 4016 2020-05-14 Puerto Rico 72 2427 117
## 4017 2020-05-14 Rhode Island 44 12016 468
## 4018 2020-05-14 South Carolina 45 8189 371
## 4019 2020-05-14 South Dakota 46 3792 43
## 4020 2020-05-14 Tennessee 47 16588 284
## 4021 2020-05-14 Texas 48 45169 1256
## 4022 2020-05-14 Utah 49 6760 76
## 4023 2020-05-14 Vermont 50 932 53
## 4024 2020-05-14 Virgin Islands 78 69 6
## 4025 2020-05-14 Virginia 51 27813 955
## 4026 2020-05-14 Washington 53 18861 991
## 4027 2020-05-14 West Virginia 54 1435 62
## 4028 2020-05-14 Wisconsin 55 11449 434
## 4029 2020-05-14 Wyoming 56 701 7
## 4030 2020-05-15 Alabama 1 11373 483
## 4031 2020-05-15 Alaska 2 388 8
## 4032 2020-05-15 Arizona 4 13169 651
## 4033 2020-05-15 Arkansas 5 4463 98
## 4034 2020-05-15 California 6 77015 3192
## 4035 2020-05-15 Colorado 8 21207 1150
## 4036 2020-05-15 Connecticut 9 36085 3285
## 4037 2020-05-15 Delaware 10 7373 271
## 4038 2020-05-15 District of Columbia 11 6871 368
## 4039 2020-05-15 Florida 12 44130 1916
## 4040 2020-05-15 Georgia 13 35242 1563
## 4041 2020-05-15 Guam 66 1123 6
## 4042 2020-05-15 Hawaii 15 628 17
## 4043 2020-05-15 Idaho 16 2389 73
## 4044 2020-05-15 Illinois 17 90528 4075
## 4045 2020-05-15 Indiana 18 27281 1691
## 4046 2020-05-15 Iowa 19 14049 336
## 4047 2020-05-15 Kansas 20 8006 187
## 4048 2020-05-15 Kentucky 21 7578 343
## 4049 2020-05-15 Louisiana 22 33903 2448
## 4050 2020-05-15 Maine 23 1603 69
## 4051 2020-05-15 Maryland 24 37105 1911
## 4052 2020-05-15 Massachusetts 25 83421 5592
## 4053 2020-05-15 Michigan 26 49982 4825
## 4054 2020-05-15 Minnesota 27 14240 692
## 4055 2020-05-15 Mississippi 28 10801 493
## 4056 2020-05-15 Missouri 29 10567 579
## 4057 2020-05-15 Montana 30 466 16
## 4058 2020-05-15 Nebraska 31 9766 122
## 4059 2020-05-15 Nevada 32 6733 345
## 4060 2020-05-15 New Hampshire 33 3464 159
## 4061 2020-05-15 New Jersey 34 143905 10138
## 4062 2020-05-15 New Mexico 35 5662 253
## 4063 2020-05-15 New York 36 350951 27755
## 4064 2020-05-15 North Carolina 37 17190 660
## 4065 2020-05-15 North Dakota 38 1761 42
## 4066 2020-05-15 Northern Mariana Islands 69 19 2
## 4067 2020-05-15 Ohio 39 26956 1581
## 4068 2020-05-15 Oklahoma 40 5086 285
## 4069 2020-05-15 Oregon 41 3541 137
## 4070 2020-05-15 Pennsylvania 42 64178 4432
## 4071 2020-05-15 Puerto Rico 72 2542 122
## 4072 2020-05-15 Rhode Island 44 12219 479
## 4073 2020-05-15 South Carolina 45 8407 380
## 4074 2020-05-15 South Dakota 46 3887 44
## 4075 2020-05-15 Tennessee 47 16917 288
## 4076 2020-05-15 Texas 48 46987 1300
## 4077 2020-05-15 Utah 49 6930 77
## 4078 2020-05-15 Vermont 50 933 53
## 4079 2020-05-15 Virgin Islands 78 69 6
## 4080 2020-05-15 Virginia 51 28672 977
## 4081 2020-05-15 Washington 53 19131 1008
## 4082 2020-05-15 West Virginia 54 1448 64
## 4083 2020-05-15 Wisconsin 55 12037 445
## 4084 2020-05-15 Wyoming 56 716 7
## 4085 2020-05-16 Alabama 1 11674 485
## 4086 2020-05-16 Alaska 2 392 8
## 4087 2020-05-16 Arizona 4 13631 679
## 4088 2020-05-16 Arkansas 5 4578 98
## 4089 2020-05-16 California 6 78933 3254
## 4090 2020-05-16 Colorado 8 21604 1192
## 4091 2020-05-16 Connecticut 9 36703 3339
## 4092 2020-05-16 Delaware 10 7547 286
## 4093 2020-05-16 District of Columbia 11 7042 375
## 4094 2020-05-16 Florida 12 44803 1963
## 4095 2020-05-16 Georgia 13 35655 1573
## 4096 2020-05-16 Guam 66 1123 6
## 4097 2020-05-16 Hawaii 15 629 17
## 4098 2020-05-16 Idaho 16 2419 73
## 4099 2020-05-16 Illinois 17 92669 4149
## 4100 2020-05-16 Indiana 18 27919 1741
## 4101 2020-05-16 Iowa 19 14328 346
## 4102 2020-05-16 Kansas 20 8059 189
## 4103 2020-05-16 Kentucky 21 7773 346
## 4104 2020-05-16 Louisiana 22 34183 2479
## 4105 2020-05-16 Maine 23 1648 70
## 4106 2020-05-16 Maryland 24 38083 1957
## 4107 2020-05-16 Massachusetts 25 84933 5705
## 4108 2020-05-16 Michigan 26 50416 4880
## 4109 2020-05-16 Minnesota 27 14969 709
## 4110 2020-05-16 Mississippi 28 11123 510
## 4111 2020-05-16 Missouri 29 10794 593
## 4112 2020-05-16 Montana 30 468 16
## 4113 2020-05-16 Nebraska 31 10220 129
## 4114 2020-05-16 Nevada 32 6810 349
## 4115 2020-05-16 New Hampshire 33 3556 171
## 4116 2020-05-16 New Jersey 34 145089 10249
## 4117 2020-05-16 New Mexico 35 5847 259
## 4118 2020-05-16 New York 36 353136 27953
## 4119 2020-05-16 North Carolina 37 18009 671
## 4120 2020-05-16 North Dakota 38 1848 42
## 4121 2020-05-16 Northern Mariana Islands 69 21 2
## 4122 2020-05-16 Ohio 39 27476 1610
## 4123 2020-05-16 Oklahoma 40 5237 288
## 4124 2020-05-16 Oregon 41 3612 137
## 4125 2020-05-16 Pennsylvania 42 65228 4490
## 4126 2020-05-16 Puerto Rico 72 2589 122
## 4127 2020-05-16 Rhode Island 44 12434 489
## 4128 2020-05-16 South Carolina 45 8661 380
## 4129 2020-05-16 South Dakota 46 3959 44
## 4130 2020-05-16 Tennessee 47 17204 292
## 4131 2020-05-16 Texas 48 47866 1330
## 4132 2020-05-16 Utah 49 7068 78
## 4133 2020-05-16 Vermont 50 934 53
## 4134 2020-05-16 Virgin Islands 78 69 6
## 4135 2020-05-16 Virginia 51 29683 1002
## 4136 2020-05-16 Washington 53 19336 1015
## 4137 2020-05-16 West Virginia 54 1470 65
## 4138 2020-05-16 Wisconsin 55 12551 453
## 4139 2020-05-16 Wyoming 56 741 7
## 4140 2020-05-17 Alabama 1 11771 488
## 4141 2020-05-17 Alaska 2 396 8
## 4142 2020-05-17 Arizona 4 13937 680
## 4143 2020-05-17 Arkansas 5 4759 98
## 4144 2020-05-17 California 6 80366 3290
## 4145 2020-05-17 Colorado 8 21909 1215
## 4146 2020-05-17 Connecticut 9 37419 3408
## 4147 2020-05-17 Delaware 10 7670 290
## 4148 2020-05-17 District of Columbia 11 7123 383
## 4149 2020-05-17 Florida 12 45580 1972
## 4150 2020-05-17 Georgia 13 35954 1584
## 4151 2020-05-17 Guam 66 1123 6
## 4152 2020-05-17 Hawaii 15 630 17
## 4153 2020-05-17 Idaho 16 2421 73
## 4154 2020-05-17 Illinois 17 94360 4198
## 4155 2020-05-17 Indiana 18 28419 1751
## 4156 2020-05-17 Iowa 19 14651 351
## 4157 2020-05-17 Kansas 20 8066 189
## 4158 2020-05-17 Kentucky 21 7793 346
## 4159 2020-05-17 Louisiana 22 34498 2491
## 4160 2020-05-17 Maine 23 1687 70
## 4161 2020-05-17 Maryland 24 38920 1992
## 4162 2020-05-17 Massachusetts 25 86010 5797
## 4163 2020-05-17 Michigan 26 51054 4891
## 4164 2020-05-17 Minnesota 27 15677 731
## 4165 2020-05-17 Mississippi 28 11296 521
## 4166 2020-05-17 Missouri 29 11069 601
## 4167 2020-05-17 Montana 30 468 16
## 4168 2020-05-17 Nebraska 31 10348 129
## 4169 2020-05-17 Nevada 32 6935 350
## 4170 2020-05-17 New Hampshire 33 3596 172
## 4171 2020-05-17 New Jersey 34 146334 10356
## 4172 2020-05-17 New Mexico 35 5938 265
## 4173 2020-05-17 New York 36 355037 28168
## 4174 2020-05-17 North Carolina 37 18537 679
## 4175 2020-05-17 North Dakota 38 1900 43
## 4176 2020-05-17 Northern Mariana Islands 69 21 2
## 4177 2020-05-17 Ohio 39 27925 1625
## 4178 2020-05-17 Oklahoma 40 5310 288
## 4179 2020-05-17 Oregon 41 3623 137
## 4180 2020-05-17 Pennsylvania 42 65745 4504
## 4181 2020-05-17 Puerto Rico 72 2646 123
## 4182 2020-05-17 Rhode Island 44 12674 499
## 4183 2020-05-17 South Carolina 45 8816 385
## 4184 2020-05-17 South Dakota 46 3987 44
## 4185 2020-05-17 Tennessee 47 17391 293
## 4186 2020-05-17 Texas 48 48828 1356
## 4187 2020-05-17 Utah 49 7238 80
## 4188 2020-05-17 Vermont 50 940 54
## 4189 2020-05-17 Virgin Islands 78 69 6
## 4190 2020-05-17 Virginia 51 30388 1009
## 4191 2020-05-17 Washington 53 19514 1016
## 4192 2020-05-17 West Virginia 54 1492 67
## 4193 2020-05-17 Wisconsin 55 12754 453
## 4194 2020-05-17 Wyoming 56 754 8
## 4195 2020-05-18 Alabama 1 12086 489
## 4196 2020-05-18 Alaska 2 399 8
## 4197 2020-05-18 Arizona 4 14170 686
## 4198 2020-05-18 Arkansas 5 4813 100
## 4199 2020-05-18 California 6 81943 3322
## 4200 2020-05-18 Colorado 8 22174 1224
## 4201 2020-05-18 Connecticut 9 38116 3449
## 4202 2020-05-18 Delaware 10 7869 297
## 4203 2020-05-18 District of Columbia 11 7270 392
## 4204 2020-05-18 Florida 12 46434 1996
## 4205 2020-05-18 Georgia 13 36634 1624
## 4206 2020-05-18 Guam 66 1123 6
## 4207 2020-05-18 Hawaii 15 630 17
## 4208 2020-05-18 Idaho 16 2455 74
## 4209 2020-05-18 Illinois 17 96778 4257
## 4210 2020-05-18 Indiana 18 28897 1765
## 4211 2020-05-18 Iowa 19 14955 355
## 4212 2020-05-18 Kansas 20 8439 190
## 4213 2020-05-18 Kentucky 21 8041 354
## 4214 2020-05-18 Louisiana 22 34832 2563
## 4215 2020-05-18 Maine 23 1713 71
## 4216 2020-05-18 Maryland 24 39882 2023
## 4217 2020-05-18 Massachusetts 25 87052 5862
## 4218 2020-05-18 Michigan 26 51853 4915
## 4219 2020-05-18 Minnesota 27 16372 740
## 4220 2020-05-18 Mississippi 28 11432 528
## 4221 2020-05-18 Missouri 29 11225 609
## 4222 2020-05-18 Montana 30 470 16
## 4223 2020-05-18 Nebraska 31 10625 132
## 4224 2020-05-18 Nevada 32 7059 364
## 4225 2020-05-18 New Hampshire 33 3652 172
## 4226 2020-05-18 New Jersey 34 148039 10435
## 4227 2020-05-18 New Mexico 35 6096 270
## 4228 2020-05-18 New York 36 356278 28302
## 4229 2020-05-18 North Carolina 37 19121 684
## 4230 2020-05-18 North Dakota 38 1931 44
## 4231 2020-05-18 Northern Mariana Islands 69 21 2
## 4232 2020-05-18 Ohio 39 28455 1657
## 4233 2020-05-18 Oklahoma 40 5398 288
## 4234 2020-05-18 Oregon 41 3687 138
## 4235 2020-05-18 Pennsylvania 42 66676 4560
## 4236 2020-05-18 Puerto Rico 72 2710 124
## 4237 2020-05-18 Rhode Island 44 12795 506
## 4238 2020-05-18 South Carolina 45 8942 391
## 4239 2020-05-18 South Dakota 46 4027 44
## 4240 2020-05-18 Tennessee 47 17767 296
## 4241 2020-05-18 Texas 48 49788 1362
## 4242 2020-05-18 Utah 49 7384 80
## 4243 2020-05-18 Vermont 50 940 54
## 4244 2020-05-18 Virgin Islands 78 69 6
## 4245 2020-05-18 Virginia 51 31140 1014
## 4246 2020-05-18 Washington 53 19756 1020
## 4247 2020-05-18 West Virginia 54 1502 68
## 4248 2020-05-18 Wisconsin 55 12912 459
## 4249 2020-05-18 Wyoming 56 766 10
## 4250 2020-05-19 Alabama 1 12376 504
## 4251 2020-05-19 Alaska 2 399 8
## 4252 2020-05-19 Arizona 4 14566 704
## 4253 2020-05-19 Arkansas 5 4923 102
## 4254 2020-05-19 California 6 83981 3422
## 4255 2020-05-19 Colorado 8 22454 1257
## 4256 2020-05-19 Connecticut 9 38430 3472
## 4257 2020-05-19 Delaware 10 8037 304
## 4258 2020-05-19 District of Columbia 11 7434 400
## 4259 2020-05-19 Florida 12 46936 2051
## 4260 2020-05-19 Georgia 13 37214 1650
## 4261 2020-05-19 Guam 66 1123 6
## 4262 2020-05-19 Hawaii 15 631 17
## 4263 2020-05-19 Idaho 16 2476 77
## 4264 2020-05-19 Illinois 17 98298 4399
## 4265 2020-05-19 Indiana 18 29402 1824
## 4266 2020-05-19 Iowa 19 15296 367
## 4267 2020-05-19 Kansas 20 8488 193
## 4268 2020-05-19 Kentucky 21 8205 369
## 4269 2020-05-19 Louisiana 22 35161 2581
## 4270 2020-05-19 Maine 23 1741 73
## 4271 2020-05-19 Maryland 24 41664 2081
## 4272 2020-05-19 Massachusetts 25 87925 5938
## 4273 2020-05-19 Michigan 26 52337 5017
## 4274 2020-05-19 Minnesota 27 17038 757
## 4275 2020-05-19 Mississippi 28 11704 554
## 4276 2020-05-19 Missouri 29 11369 631
## 4277 2020-05-19 Montana 30 471 16
## 4278 2020-05-19 Nebraska 31 10846 136
## 4279 2020-05-19 Nevada 32 7169 373
## 4280 2020-05-19 New Hampshire 33 3721 182
## 4281 2020-05-19 New Jersey 34 149013 10586
## 4282 2020-05-19 New Mexico 35 6192 276
## 4283 2020-05-19 New York 36 357757 28437
## 4284 2020-05-19 North Carolina 37 19762 711
## 4285 2020-05-19 North Dakota 38 1994 45
## 4286 2020-05-19 Northern Mariana Islands 69 21 2
## 4287 2020-05-19 Ohio 39 28953 1720
## 4288 2020-05-19 Oklahoma 40 5489 294
## 4289 2020-05-19 Oregon 41 3726 140
## 4290 2020-05-19 Pennsylvania 42 67404 4675
## 4291 2020-05-19 Puerto Rico 72 2805 124
## 4292 2020-05-19 Rhode Island 44 12951 532
## 4293 2020-05-19 South Carolina 45 9056 399
## 4294 2020-05-19 South Dakota 46 4085 46
## 4295 2020-05-19 Tennessee 47 18301 301
## 4296 2020-05-19 Texas 48 51080 1405
## 4297 2020-05-19 Utah 49 7530 88
## 4298 2020-05-19 Vermont 50 944 54
## 4299 2020-05-19 Virgin Islands 78 69 6
## 4300 2020-05-19 Virginia 51 32145 1041
## 4301 2020-05-19 Washington 53 19988 1042
## 4302 2020-05-19 West Virginia 54 1514 68
## 4303 2020-05-19 Wisconsin 55 13200 467
## 4304 2020-05-19 Wyoming 56 776 10
## 4305 2020-05-20 Alabama 1 13052 522
## 4306 2020-05-20 Alaska 2 402 8
## 4307 2020-05-20 Arizona 4 14897 747
## 4308 2020-05-20 Arkansas 5 5003 107
## 4309 2020-05-20 California 6 86125 3514
## 4310 2020-05-20 Colorado 8 22769 1299
## 4311 2020-05-20 Connecticut 9 39017 3529
## 4312 2020-05-20 Delaware 10 8194 310
## 4313 2020-05-20 District of Columbia 11 7551 407
## 4314 2020-05-20 Florida 12 47463 2095
## 4315 2020-05-20 Georgia 13 38162 1672
## 4316 2020-05-20 Guam 66 1134 6
## 4317 2020-05-20 Hawaii 15 633 17
## 4318 2020-05-20 Idaho 16 2506 77
## 4319 2020-05-20 Illinois 17 100713 4547
## 4320 2020-05-20 Indiana 18 29986 1864
## 4321 2020-05-20 Iowa 19 15868 400
## 4322 2020-05-20 Kansas 20 8661 197
## 4323 2020-05-20 Kentucky 21 8336 381
## 4324 2020-05-20 Louisiana 22 35439 2608
## 4325 2020-05-20 Maine 23 1819 73
## 4326 2020-05-20 Maryland 24 42442 2123
## 4327 2020-05-20 Massachusetts 25 88970 6066
## 4328 2020-05-20 Michigan 26 52988 5060
## 4329 2020-05-20 Minnesota 27 17679 786
## 4330 2020-05-20 Mississippi 28 11967 570
## 4331 2020-05-20 Missouri 29 11510 643
## 4332 2020-05-20 Montana 30 478 16
## 4333 2020-05-20 Nebraska 31 11119 141
## 4334 2020-05-20 Nevada 32 7301 378
## 4335 2020-05-20 New Hampshire 33 3868 190
## 4336 2020-05-20 New Jersey 34 150399 10747
## 4337 2020-05-20 New Mexico 35 6338 283
## 4338 2020-05-20 New York 36 359235 28540
## 4339 2020-05-20 North Carolina 37 20221 721
## 4340 2020-05-20 North Dakota 38 2095 49
## 4341 2020-05-20 Northern Mariana Islands 69 21 2
## 4342 2020-05-20 Ohio 39 29437 1781
## 4343 2020-05-20 Oklahoma 40 5532 299
## 4344 2020-05-20 Oregon 41 3801 144
## 4345 2020-05-20 Pennsylvania 42 68151 4794
## 4346 2020-05-20 Puerto Rico 72 2866 125
## 4347 2020-05-20 Rhode Island 44 13356 538
## 4348 2020-05-20 South Carolina 45 9175 407
## 4349 2020-05-20 South Dakota 46 4177 46
## 4350 2020-05-20 Tennessee 47 18534 309
## 4351 2020-05-20 Texas 48 52369 1443
## 4352 2020-05-20 Utah 49 7717 90
## 4353 2020-05-20 Vermont 50 944 54
## 4354 2020-05-20 Virgin Islands 78 69 6
## 4355 2020-05-20 Virginia 51 32908 1074
## 4356 2020-05-20 Washington 53 20110 1045
## 4357 2020-05-20 West Virginia 54 1567 69
## 4358 2020-05-20 Wisconsin 55 13779 481
## 4359 2020-05-20 Wyoming 56 787 11
## 4360 2020-05-21 Alabama 1 13414 529
## 4361 2020-05-21 Alaska 2 402 8
## 4362 2020-05-21 Arizona 4 15315 763
## 4363 2020-05-21 Arkansas 5 5458 110
## 4364 2020-05-21 California 6 88488 3624
## 4365 2020-05-21 Colorado 8 23161 1310
## 4366 2020-05-21 Connecticut 9 39208 3582
## 4367 2020-05-21 Delaware 10 8386 317
## 4368 2020-05-21 District of Columbia 11 7788 412
## 4369 2020-05-21 Florida 12 48667 2143
## 4370 2020-05-21 Georgia 13 38969 1749
## 4371 2020-05-21 Guam 66 1134 6
## 4372 2020-05-21 Hawaii 15 637 17
## 4373 2020-05-21 Idaho 16 2534 77
## 4374 2020-05-21 Illinois 17 102995 4634
## 4375 2020-05-21 Indiana 18 30673 1913
## 4376 2020-05-21 Iowa 19 16170 414
## 4377 2020-05-21 Kansas 20 8771 199
## 4378 2020-05-21 Kentucky 21 8475 393
## 4379 2020-05-21 Louisiana 22 36627 2629
## 4380 2020-05-21 Maine 23 1877 73
## 4381 2020-05-21 Maryland 24 43645 2159
## 4382 2020-05-21 Massachusetts 25 90084 6148
## 4383 2020-05-21 Michigan 26 53468 5129
## 4384 2020-05-21 Minnesota 27 18209 818
## 4385 2020-05-21 Mississippi 28 12222 580
## 4386 2020-05-21 Missouri 29 11657 670
## 4387 2020-05-21 Montana 30 479 16
## 4388 2020-05-21 Nebraska 31 11423 148
## 4389 2020-05-21 Nevada 32 7404 381
## 4390 2020-05-21 New Hampshire 33 3935 199
## 4391 2020-05-21 New Jersey 34 151472 10843
## 4392 2020-05-21 New Mexico 35 6472 294
## 4393 2020-05-21 New York 36 361313 28663
## 4394 2020-05-21 North Carolina 37 20934 734
## 4395 2020-05-21 North Dakota 38 2229 51
## 4396 2020-05-21 Northern Mariana Islands 69 22 2
## 4397 2020-05-21 Ohio 39 30168 1836
## 4398 2020-05-21 Oklahoma 40 5680 304
## 4399 2020-05-21 Oregon 41 3817 145
## 4400 2020-05-21 Pennsylvania 42 69252 4887
## 4401 2020-05-21 Puerto Rico 72 2913 126
## 4402 2020-05-21 Rhode Island 44 13571 556
## 4403 2020-05-21 South Carolina 45 9379 416
## 4404 2020-05-21 South Dakota 46 4177 47
## 4405 2020-05-21 Tennessee 47 18970 313
## 4406 2020-05-21 Texas 48 53441 1480
## 4407 2020-05-21 Utah 49 7876 92
## 4408 2020-05-21 Vermont 50 950 54
## 4409 2020-05-21 Virgin Islands 78 69 6
## 4410 2020-05-21 Virginia 51 34137 1099
## 4411 2020-05-21 Washington 53 20280 1054
## 4412 2020-05-21 West Virginia 54 1603 71
## 4413 2020-05-21 Wisconsin 55 14172 487
## 4414 2020-05-21 Wyoming 56 801 12
## 4415 2020-05-22 Alabama 1 13670 541
## 4416 2020-05-22 Alaska 2 404 8
## 4417 2020-05-22 Arizona 4 15608 775
## 4418 2020-05-22 Arkansas 5 5612 113
## 4419 2020-05-22 California 6 90801 3690
## 4420 2020-05-22 Colorado 8 23456 1324
## 4421 2020-05-22 Connecticut 9 39640 3637
## 4422 2020-05-22 Delaware 10 8529 322
## 4423 2020-05-22 District of Columbia 11 7893 418
## 4424 2020-05-22 Florida 12 49443 2189
## 4425 2020-05-22 Georgia 13 39734 1779
## 4426 2020-05-22 Guam 66 1134 6
## 4427 2020-05-22 Hawaii 15 632 17
## 4428 2020-05-22 Idaho 16 2595 79
## 4429 2020-05-22 Illinois 17 105710 4740
## 4430 2020-05-22 Indiana 18 31165 1941
## 4431 2020-05-22 Iowa 19 16510 441
## 4432 2020-05-22 Kansas 20 9068 200
## 4433 2020-05-22 Kentucky 21 8688 398
## 4434 2020-05-22 Louisiana 22 37048 2669
## 4435 2020-05-22 Maine 23 1948 75
## 4436 2020-05-22 Maryland 24 44539 2207
## 4437 2020-05-22 Massachusetts 25 90889 6228
## 4438 2020-05-22 Michigan 26 53865 5158
## 4439 2020-05-22 Minnesota 27 19014 851
## 4440 2020-05-22 Mississippi 28 12624 596
## 4441 2020-05-22 Missouri 29 11797 680
## 4442 2020-05-22 Montana 30 479 16
## 4443 2020-05-22 Nebraska 31 11661 149
## 4444 2020-05-22 Nevada 32 7531 387
## 4445 2020-05-22 New Hampshire 33 4014 204
## 4446 2020-05-22 New Jersey 34 152719 10985
## 4447 2020-05-22 New Mexico 35 6625 302
## 4448 2020-05-22 New York 36 362991 28802
## 4449 2020-05-22 North Carolina 37 21661 754
## 4450 2020-05-22 North Dakota 38 2317 52
## 4451 2020-05-22 Northern Mariana Islands 69 22 2
## 4452 2020-05-22 Ohio 39 30795 1872
## 4453 2020-05-22 Oklahoma 40 5849 307
## 4454 2020-05-22 Oregon 41 3864 147
## 4455 2020-05-22 Pennsylvania 42 70305 5032
## 4456 2020-05-22 Puerto Rico 72 3030 126
## 4457 2020-05-22 Rhode Island 44 13736 579
## 4458 2020-05-22 South Carolina 45 9638 419
## 4459 2020-05-22 South Dakota 46 4356 50
## 4460 2020-05-22 Tennessee 47 19364 315
## 4461 2020-05-22 Texas 48 54369 1498
## 4462 2020-05-22 Utah 49 8057 93
## 4463 2020-05-22 Vermont 50 952 54
## 4464 2020-05-22 Virgin Islands 78 69 6
## 4465 2020-05-22 Virginia 51 34950 1136
## 4466 2020-05-22 Washington 53 20526 1061
## 4467 2020-05-22 West Virginia 54 1705 72
## 4468 2020-05-22 Wisconsin 55 14768 496
## 4469 2020-05-22 Wyoming 56 803 12
## 4470 2020-05-23 Alabama 1 14149 549
## 4471 2020-05-23 Alaska 2 409 8
## 4472 2020-05-23 Arizona 4 16040 799
## 4473 2020-05-23 Arkansas 5 5775 115
## 4474 2020-05-23 California 6 92815 3768
## 4475 2020-05-23 Colorado 8 23932 1327
## 4476 2020-05-23 Connecticut 9 40022 3675
## 4477 2020-05-23 Delaware 10 8690 324
## 4478 2020-05-23 District of Columbia 11 7966 427
## 4479 2020-05-23 Florida 12 50119 2232
## 4480 2020-05-23 Georgia 13 40408 1794
## 4481 2020-05-23 Guam 66 1134 6
## 4482 2020-05-23 Hawaii 15 633 17
## 4483 2020-05-23 Idaho 16 2626 79
## 4484 2020-05-23 Illinois 17 108100 4817
## 4485 2020-05-23 Indiana 18 31674 1964
## 4486 2020-05-23 Iowa 19 16898 446
## 4487 2020-05-23 Kansas 20 9119 200
## 4488 2020-05-23 Kentucky 21 8812 399
## 4489 2020-05-23 Louisiana 22 37165 2683
## 4490 2020-05-23 Maine 23 2013 77
## 4491 2020-05-23 Maryland 24 45608 2243
## 4492 2020-05-23 Massachusetts 25 91662 6304
## 4493 2020-05-23 Michigan 26 54304 5223
## 4494 2020-05-23 Minnesota 27 19854 861
## 4495 2020-05-23 Mississippi 28 13005 616
## 4496 2020-05-23 Missouri 29 11922 685
## 4497 2020-05-23 Montana 30 479 16
## 4498 2020-05-23 Nebraska 31 11988 150
## 4499 2020-05-23 Nevada 32 7769 392
## 4500 2020-05-23 New Hampshire 33 4089 208
## 4501 2020-05-23 New Jersey 34 153104 11081
## 4502 2020-05-23 New Mexico 35 6795 308
## 4503 2020-05-23 New York 36 364745 28900
## 4504 2020-05-23 North Carolina 37 22731 763
## 4505 2020-05-23 North Dakota 38 2365 52
## 4506 2020-05-23 Northern Mariana Islands 69 22 2
## 4507 2020-05-23 Ohio 39 31408 1956
## 4508 2020-05-23 Oklahoma 40 5960 311
## 4509 2020-05-23 Oregon 41 3888 147
## 4510 2020-05-23 Pennsylvania 42 71102 5121
## 4511 2020-05-23 Puerto Rico 72 3100 127
## 4512 2020-05-23 Rhode Island 44 13952 597
## 4513 2020-05-23 South Carolina 45 9895 425
## 4514 2020-05-23 South Dakota 46 4468 50
## 4515 2020-05-23 Tennessee 47 19765 325
## 4516 2020-05-23 Texas 48 55451 1522
## 4517 2020-05-23 Utah 49 8260 97
## 4518 2020-05-23 Vermont 50 954 54
## 4519 2020-05-23 Virgin Islands 78 69 6
## 4520 2020-05-23 Virginia 51 35749 1159
## 4521 2020-05-23 Washington 53 20740 1062
## 4522 2020-05-23 West Virginia 54 1729 72
## 4523 2020-05-23 Wisconsin 55 15196 507
## 4524 2020-05-23 Wyoming 56 813 12
## 4525 2020-05-24 Alabama 1 14478 551
## 4526 2020-05-24 Alaska 2 409 8
## 4527 2020-05-24 Arizona 4 16339 800
## 4528 2020-05-24 Arkansas 5 5922 116
## 4529 2020-05-24 California 6 94743 3790
## 4530 2020-05-24 Colorado 8 24140 1332
## 4531 2020-05-24 Connecticut 9 40468 3693
## 4532 2020-05-24 Delaware 10 8809 326
## 4533 2020-05-24 District of Columbia 11 8110 432
## 4534 2020-05-24 Florida 12 50859 2236
## 4535 2020-05-24 Georgia 13 40989 1799
## 4536 2020-05-24 Guam 66 1135 6
## 4537 2020-05-24 Hawaii 15 633 17
## 4538 2020-05-24 Idaho 16 2650 79
## 4539 2020-05-24 Illinois 17 110541 4884
## 4540 2020-05-24 Indiana 18 32151 1976
## 4541 2020-05-24 Iowa 19 17434 456
## 4542 2020-05-24 Kansas 20 9135 200
## 4543 2020-05-24 Kentucky 21 8842 399
## 4544 2020-05-24 Louisiana 22 37293 2690
## 4545 2020-05-24 Maine 23 2055 78
## 4546 2020-05-24 Maryland 24 46919 2277
## 4547 2020-05-24 Massachusetts 25 92675 6372
## 4548 2020-05-24 Michigan 26 54616 5228
## 4549 2020-05-24 Minnesota 27 20582 878
## 4550 2020-05-24 Mississippi 28 13252 625
## 4551 2020-05-24 Missouri 29 12114 689
## 4552 2020-05-24 Montana 30 479 16
## 4553 2020-05-24 Nebraska 31 12133 153
## 4554 2020-05-24 Nevada 32 7886 394
## 4555 2020-05-24 New Hampshire 33 4149 209
## 4556 2020-05-24 New Jersey 34 154154 11133
## 4557 2020-05-24 New Mexico 35 6943 317
## 4558 2020-05-24 New York 36 366346 29046
## 4559 2020-05-24 North Carolina 37 23231 771
## 4560 2020-05-24 North Dakota 38 2418 53
## 4561 2020-05-24 Northern Mariana Islands 69 22 2
## 4562 2020-05-24 Ohio 39 31911 1969
## 4563 2020-05-24 Oklahoma 40 6037 311
## 4564 2020-05-24 Oregon 41 3927 148
## 4565 2020-05-24 Pennsylvania 42 71656 5145
## 4566 2020-05-24 Puerto Rico 72 3189 127
## 4567 2020-05-24 Rhode Island 44 14065 608
## 4568 2020-05-24 South Carolina 45 10096 435
## 4569 2020-05-24 South Dakota 46 4563 50
## 4570 2020-05-24 Tennessee 47 20116 332
## 4571 2020-05-24 Texas 48 56050 1533
## 4572 2020-05-24 Utah 49 8392 97
## 4573 2020-05-24 Vermont 50 956 54
## 4574 2020-05-24 Virgin Islands 78 69 6
## 4575 2020-05-24 Virginia 51 36244 1171
## 4576 2020-05-24 Washington 53 20989 1069
## 4577 2020-05-24 West Virginia 54 1771 72
## 4578 2020-05-24 Wisconsin 55 15573 510
## 4579 2020-05-24 Wyoming 56 813 12
## 4580 2020-05-25 Alabama 1 14986 566
## 4581 2020-05-25 Alaska 2 412 8
## 4582 2020-05-25 Arizona 4 16561 806
## 4583 2020-05-25 Arkansas 5 6029 117
## 4584 2020-05-25 California 6 97017 3808
## 4585 2020-05-25 Colorado 8 24256 1333
## 4586 2020-05-25 Connecticut 9 40873 3742
## 4587 2020-05-25 Delaware 10 8965 332
## 4588 2020-05-25 District of Columbia 11 8225 440
## 4589 2020-05-25 Florida 12 51738 2251
## 4590 2020-05-25 Georgia 13 41414 1820
## 4591 2020-05-25 Guam 66 1135 6
## 4592 2020-05-25 Hawaii 15 633 17
## 4593 2020-05-25 Idaho 16 2664 79
## 4594 2020-05-25 Illinois 17 112248 4912
## 4595 2020-05-25 Indiana 18 32489 1984
## 4596 2020-05-25 Iowa 19 17628 460
## 4597 2020-05-25 Kansas 20 9272 201
## 4598 2020-05-25 Kentucky 21 8899 403
## 4599 2020-05-25 Louisiana 22 37916 2690
## 4600 2020-05-25 Maine 23 2074 78
## 4601 2020-05-25 Maryland 24 47754 2302
## 4602 2020-05-25 Massachusetts 25 93271 6416
## 4603 2020-05-25 Michigan 26 54816 5240
## 4604 2020-05-25 Minnesota 27 21324 890
## 4605 2020-05-25 Mississippi 28 13458 635
## 4606 2020-05-25 Missouri 29 12296 694
## 4607 2020-05-25 Montana 30 479 16
## 4608 2020-05-25 Nebraska 31 12354 155
## 4609 2020-05-25 Nevada 32 7959 396
## 4610 2020-05-25 New Hampshire 33 4197 210
## 4611 2020-05-25 New Jersey 34 155092 11144
## 4612 2020-05-25 New Mexico 35 7026 320
## 4613 2020-05-25 New York 36 367625 29138
## 4614 2020-05-25 North Carolina 37 23997 780
## 4615 2020-05-25 North Dakota 38 2457 54
## 4616 2020-05-25 Northern Mariana Islands 69 22 2
## 4617 2020-05-25 Ohio 39 32477 1987
## 4618 2020-05-25 Oklahoma 40 6090 313
## 4619 2020-05-25 Oregon 41 3949 148
## 4620 2020-05-25 Pennsylvania 42 72356 5159
## 4621 2020-05-25 Puerto Rico 72 3260 129
## 4622 2020-05-25 Rhode Island 44 14065 608
## 4623 2020-05-25 South Carolina 45 10178 440
## 4624 2020-05-25 South Dakota 46 4586 50
## 4625 2020-05-25 Tennessee 47 20533 334
## 4626 2020-05-25 Texas 48 56490 1536
## 4627 2020-05-25 Utah 49 8521 98
## 4628 2020-05-25 Vermont 50 962 54
## 4629 2020-05-25 Virgin Islands 78 69 6
## 4630 2020-05-25 Virginia 51 37727 1208
## 4631 2020-05-25 Washington 53 21265 1076
## 4632 2020-05-25 West Virginia 54 1782 73
## 4633 2020-05-25 Wisconsin 55 15857 514
## 4634 2020-05-25 Wyoming 56 843 12
## 4635 2020-05-26 Alabama 1 15650 580
## 4636 2020-05-26 Alaska 2 416 8
## 4637 2020-05-26 Arizona 4 16783 807
## 4638 2020-05-26 Arkansas 5 6180 119
## 4639 2020-05-26 California 6 99924 3859
## 4640 2020-05-26 Colorado 8 24553 1352
## 4641 2020-05-26 Connecticut 9 41303 3769
## 4642 2020-05-26 Delaware 10 9066 335
## 4643 2020-05-26 District of Columbia 11 8334 440
## 4644 2020-05-26 Florida 12 52247 2258
## 4645 2020-05-26 Georgia 13 42066 1867
## 4646 2020-05-26 Guam 66 1139 6
## 4647 2020-05-26 Hawaii 15 633 17
## 4648 2020-05-26 Idaho 16 2699 81
## 4649 2020-05-26 Illinois 17 113486 4960
## 4650 2020-05-26 Indiana 18 32856 2004
## 4651 2020-05-26 Iowa 19 17999 480
## 4652 2020-05-26 Kansas 20 9352 204
## 4653 2020-05-26 Kentucky 21 9175 407
## 4654 2020-05-26 Louisiana 22 38252 2701
## 4655 2020-05-26 Maine 23 2109 79
## 4656 2020-05-26 Maryland 24 48290 2333
## 4657 2020-05-26 Massachusetts 25 93693 6473
## 4658 2020-05-26 Michigan 26 55040 5266
## 4659 2020-05-26 Minnesota 27 21969 908
## 4660 2020-05-26 Mississippi 28 13731 652
## 4661 2020-05-26 Missouri 29 12437 698
## 4662 2020-05-26 Montana 30 479 17
## 4663 2020-05-26 Nebraska 31 12618 160
## 4664 2020-05-26 Nevada 32 8059 396
## 4665 2020-05-26 New Hampshire 33 4231 214
## 4666 2020-05-26 New Jersey 34 155764 11191
## 4667 2020-05-26 New Mexico 35 7130 325
## 4668 2020-05-26 New York 36 368669 29241
## 4669 2020-05-26 North Carolina 37 24188 789
## 4670 2020-05-26 North Dakota 38 2422 54
## 4671 2020-05-26 Northern Mariana Islands 69 22 2
## 4672 2020-05-26 Ohio 39 33006 2002
## 4673 2020-05-26 Oklahoma 40 6137 318
## 4674 2020-05-26 Oregon 41 3968 148
## 4675 2020-05-26 Pennsylvania 42 72873 5175
## 4676 2020-05-26 Puerto Rico 72 3324 129
## 4677 2020-05-26 Rhode Island 44 14210 634
## 4678 2020-05-26 South Carolina 45 10416 446
## 4679 2020-05-26 South Dakota 46 4653 50
## 4680 2020-05-26 Tennessee 47 20960 339
## 4681 2020-05-26 Texas 48 57573 1552
## 4682 2020-05-26 Utah 49 8622 101
## 4683 2020-05-26 Vermont 50 967 54
## 4684 2020-05-26 Virgin Islands 78 69 6
## 4685 2020-05-26 Virginia 51 39342 1236
## 4686 2020-05-26 Washington 53 21538 1091
## 4687 2020-05-26 West Virginia 54 1854 74
## 4688 2020-05-26 Wisconsin 55 16141 517
## 4689 2020-05-26 Wyoming 56 850 13
## 4690 2020-05-27 Alabama 1 16032 583
## 4691 2020-05-27 Alaska 2 417 8
## 4692 2020-05-27 Arizona 4 17262 831
## 4693 2020-05-27 Arkansas 5 6277 120
## 4694 2020-05-27 California 6 101873 3961
## 4695 2020-05-27 Colorado 8 24775 1393
## 4696 2020-05-27 Connecticut 9 41288 3803
## 4697 2020-05-27 Delaware 10 9096 344
## 4698 2020-05-27 District of Columbia 11 8406 445
## 4699 2020-05-27 Florida 12 52626 2318
## 4700 2020-05-27 Georgia 13 42713 1904
## 4701 2020-05-27 Guam 66 1140 6
## 4702 2020-05-27 Hawaii 15 634 17
## 4703 2020-05-27 Idaho 16 2731 82
## 4704 2020-05-27 Illinois 17 114612 5118
## 4705 2020-05-27 Indiana 18 33242 2030
## 4706 2020-05-27 Iowa 19 18446 496
## 4707 2020-05-27 Kansas 20 9453 207
## 4708 2020-05-27 Kentucky 21 9313 420
## 4709 2020-05-27 Louisiana 22 38694 2722
## 4710 2020-05-27 Maine 23 2137 81
## 4711 2020-05-27 Maryland 24 49042 2392
## 4712 2020-05-27 Massachusetts 25 94220 6547
## 4713 2020-05-27 Michigan 26 55544 5334
## 4714 2020-05-27 Minnesota 27 22474 942
## 4715 2020-05-27 Mississippi 28 14044 670
## 4716 2020-05-27 Missouri 29 12624 705
## 4717 2020-05-27 Montana 30 481 17
## 4718 2020-05-27 Nebraska 31 12975 168
## 4719 2020-05-27 Nevada 32 8150 402
## 4720 2020-05-27 New Hampshire 33 4286 223
## 4721 2020-05-27 New Jersey 34 156628 11339
## 4722 2020-05-27 New Mexico 35 7252 329
## 4723 2020-05-27 New York 36 369801 29339
## 4724 2020-05-27 North Carolina 37 24787 827
## 4725 2020-05-27 North Dakota 38 2442 59
## 4726 2020-05-27 Northern Mariana Islands 69 22 2
## 4727 2020-05-27 Ohio 39 33439 2044
## 4728 2020-05-27 Oklahoma 40 6229 322
## 4729 2020-05-27 Oregon 41 4041 148
## 4730 2020-05-27 Pennsylvania 42 73646 5290
## 4731 2020-05-27 Puerto Rico 72 3397 129
## 4732 2020-05-27 Rhode Island 44 14353 655
## 4733 2020-05-27 South Carolina 45 10623 466
## 4734 2020-05-27 South Dakota 46 4710 54
## 4735 2020-05-27 Tennessee 47 21360 353
## 4736 2020-05-27 Texas 48 59105 1598
## 4737 2020-05-27 Utah 49 8710 105
## 4738 2020-05-27 Vermont 50 971 54
## 4739 2020-05-27 Virgin Islands 78 69 6
## 4740 2020-05-27 Virginia 51 40249 1281
## 4741 2020-05-27 Washington 53 21825 1106
## 4742 2020-05-27 West Virginia 54 1899 74
## 4743 2020-05-27 Wisconsin 55 16786 539
## 4744 2020-05-27 Wyoming 56 860 14
## 4745 2020-05-28 Alabama 1 16530 591
## 4746 2020-05-28 Alaska 2 430 8
## 4747 2020-05-28 Arizona 4 17763 857
## 4748 2020-05-28 Arkansas 5 6538 125
## 4749 2020-05-28 California 6 104071 4042
## 4750 2020-05-28 Colorado 8 25116 1422
## 4751 2020-05-28 Connecticut 9 41559 3826
## 4752 2020-05-28 Delaware 10 9171 345
## 4753 2020-05-28 District of Columbia 11 8492 453
## 4754 2020-05-28 Florida 12 53277 2363
## 4755 2020-05-28 Georgia 13 43363 1942
## 4756 2020-05-28 Guam 66 1141 6
## 4757 2020-05-28 Hawaii 15 637 17
## 4758 2020-05-28 Idaho 16 2770 82
## 4759 2020-05-28 Illinois 17 116128 5225
## 4760 2020-05-28 Indiana 18 33885 2068
## 4761 2020-05-28 Iowa 19 18672 510
## 4762 2020-05-28 Kansas 20 9513 209
## 4763 2020-05-28 Kentucky 21 9510 424
## 4764 2020-05-28 Louisiana 22 38907 2740
## 4765 2020-05-28 Maine 23 2189 84
## 4766 2020-05-28 Maryland 24 50334 2428
## 4767 2020-05-28 Massachusetts 25 94895 6640
## 4768 2020-05-28 Michigan 26 55944 5372
## 4769 2020-05-28 Minnesota 27 22957 977
## 4770 2020-05-28 Mississippi 28 14372 693
## 4771 2020-05-28 Missouri 29 12815 715
## 4772 2020-05-28 Montana 30 485 17
## 4773 2020-05-28 Nebraska 31 13260 170
## 4774 2020-05-28 Nevada 32 8247 410
## 4775 2020-05-28 New Hampshire 33 4389 232
## 4776 2020-05-28 New Jersey 34 157815 11401
## 4777 2020-05-28 New Mexico 35 7364 335
## 4778 2020-05-28 New York 36 371559 29438
## 4779 2020-05-28 North Carolina 37 25616 859
## 4780 2020-05-28 North Dakota 38 2484 60
## 4781 2020-05-28 Northern Mariana Islands 69 22 2
## 4782 2020-05-28 Ohio 39 33915 2098
## 4783 2020-05-28 Oklahoma 40 6270 326
## 4784 2020-05-28 Oregon 41 4087 151
## 4785 2020-05-28 Pennsylvania 42 74312 5397
## 4786 2020-05-28 Puerto Rico 72 3486 131
## 4787 2020-05-28 Rhode Island 44 14494 677
## 4788 2020-05-28 South Carolina 45 10788 470
## 4789 2020-05-28 South Dakota 46 4793 54
## 4790 2020-05-28 Tennessee 47 21763 352
## 4791 2020-05-28 Texas 48 60820 1618
## 4792 2020-05-28 Utah 49 8953 106
## 4793 2020-05-28 Vermont 50 974 55
## 4794 2020-05-28 Virgin Islands 78 69 6
## 4795 2020-05-28 Virginia 51 41401 1338
## 4796 2020-05-28 Washington 53 22091 1116
## 4797 2020-05-28 West Virginia 54 1935 74
## 4798 2020-05-28 Wisconsin 55 17476 550
## 4799 2020-05-28 Wyoming 56 876 15
## 4800 2020-05-29 Alabama 1 17031 610
## 4801 2020-05-29 Alaska 2 436 8
## 4802 2020-05-29 Arizona 4 18465 885
## 4803 2020-05-29 Arkansas 5 6777 132
## 4804 2020-05-29 California 6 107043 4144
## 4805 2020-05-29 Colorado 8 25602 1437
## 4806 2020-05-29 Connecticut 9 41762 3868
## 4807 2020-05-29 Delaware 10 9236 356
## 4808 2020-05-29 District of Columbia 11 8538 460
## 4809 2020-05-29 Florida 12 54489 2412
## 4810 2020-05-29 Georgia 13 43888 1953
## 4811 2020-05-29 Guam 66 1141 6
## 4812 2020-05-29 Hawaii 15 639 17
## 4813 2020-05-29 Idaho 16 2804 82
## 4814 2020-05-29 Illinois 17 117794 5308
## 4815 2020-05-29 Indiana 18 34399 2110
## 4816 2020-05-29 Iowa 19 19019 525
## 4817 2020-05-29 Kansas 20 9826 209
## 4818 2020-05-29 Kentucky 21 9688 434
## 4819 2020-05-29 Louisiana 22 38907 2766
## 4820 2020-05-29 Maine 23 2226 85
## 4821 2020-05-29 Maryland 24 51631 2466
## 4822 2020-05-29 Massachusetts 25 95512 6718
## 4823 2020-05-29 Michigan 26 56589 5406
## 4824 2020-05-29 Minnesota 27 23541 1006
## 4825 2020-05-29 Mississippi 28 14790 710
## 4826 2020-05-29 Missouri 29 12949 740
## 4827 2020-05-29 Montana 30 493 17
## 4828 2020-05-29 Nebraska 31 13654 177
## 4829 2020-05-29 Nevada 32 8375 415
## 4830 2020-05-29 New Hampshire 33 4492 238
## 4831 2020-05-29 New Jersey 34 158844 11531
## 4832 2020-05-29 New Mexico 35 7493 344
## 4833 2020-05-29 New York 36 373108 29535
## 4834 2020-05-29 North Carolina 37 26735 888
## 4835 2020-05-29 North Dakota 38 2523 62
## 4836 2020-05-29 Northern Mariana Islands 69 22 2
## 4837 2020-05-29 Ohio 39 34566 2131
## 4838 2020-05-29 Oklahoma 40 6338 329
## 4839 2020-05-29 Oregon 41 4133 151
## 4840 2020-05-29 Pennsylvania 42 75073 5467
## 4841 2020-05-29 Puerto Rico 72 3647 132
## 4842 2020-05-29 Rhode Island 44 14635 693
## 4843 2020-05-29 South Carolina 45 11131 483
## 4844 2020-05-29 South Dakota 46 4866 59
## 4845 2020-05-29 Tennessee 47 22199 356
## 4846 2020-05-29 Texas 48 62073 1645
## 4847 2020-05-29 Utah 49 9282 107
## 4848 2020-05-29 Vermont 50 975 55
## 4849 2020-05-29 Virgin Islands 78 69 6
## 4850 2020-05-29 Virginia 51 42533 1358
## 4851 2020-05-29 Washington 53 22377 1120
## 4852 2020-05-29 West Virginia 54 1972 74
## 4853 2020-05-29 Wisconsin 55 18050 569
## 4854 2020-05-29 Wyoming 56 891 15
## 4855 2020-05-30 Alabama 1 17359 618
## 4856 2020-05-30 Alaska 2 441 8
## 4857 2020-05-30 Arizona 4 19255 903
## 4858 2020-05-30 Arkansas 5 7013 133
## 4859 2020-05-30 California 6 110100 4214
## 4860 2020-05-30 Colorado 8 26084 1443
## 4861 2020-05-30 Connecticut 9 42022 3912
## 4862 2020-05-30 Delaware 10 9422 361
## 4863 2020-05-30 District of Columbia 11 8717 462
## 4864 2020-05-30 Florida 12 55416 2446
## 4865 2020-05-30 Georgia 13 44336 1973
## 4866 2020-05-30 Guam 66 1141 6
## 4867 2020-05-30 Hawaii 15 641 17
## 4868 2020-05-30 Idaho 16 2840 82
## 4869 2020-05-30 Illinois 17 119290 5368
## 4870 2020-05-30 Indiana 18 35064 2125
## 4871 2020-05-30 Iowa 19 19336 531
## 4872 2020-05-30 Kansas 20 9847 209
## 4873 2020-05-30 Kentucky 21 9887 441
## 4874 2020-05-30 Louisiana 22 39682 2785
## 4875 2020-05-30 Maine 23 2282 89
## 4876 2020-05-30 Maryland 24 52662 2509
## 4877 2020-05-30 Massachusetts 25 96301 6768
## 4878 2020-05-30 Michigan 26 56848 5463
## 4879 2020-05-30 Minnesota 27 24200 1036
## 4880 2020-05-30 Mississippi 28 15229 723
## 4881 2020-05-30 Missouri 29 13118 782
## 4882 2020-05-30 Montana 30 505 17
## 4883 2020-05-30 Nebraska 31 13905 177
## 4884 2020-05-30 Nevada 32 8519 417
## 4885 2020-05-30 New Hampshire 33 4545 242
## 4886 2020-05-30 New Jersey 34 159608 11634
## 4887 2020-05-30 New Mexico 35 7624 351
## 4888 2020-05-30 New York 36 374471 29612
## 4889 2020-05-30 North Carolina 37 27761 903
## 4890 2020-05-30 North Dakota 38 2557 63
## 4891 2020-05-30 Northern Mariana Islands 69 22 2
## 4892 2020-05-30 Ohio 39 35034 2149
## 4893 2020-05-30 Oklahoma 40 6418 334
## 4894 2020-05-30 Oregon 41 4185 153
## 4895 2020-05-30 Pennsylvania 42 75789 5537
## 4896 2020-05-30 Puerto Rico 72 3718 133
## 4897 2020-05-30 Rhode Island 44 14819 711
## 4898 2020-05-30 South Carolina 45 11394 487
## 4899 2020-05-30 South Dakota 46 4960 62
## 4900 2020-05-30 Tennessee 47 22676 360
## 4901 2020-05-30 Texas 48 63396 1676
## 4902 2020-05-30 Utah 49 9551 112
## 4903 2020-05-30 Vermont 50 977 55
## 4904 2020-05-30 Virgin Islands 78 70 6
## 4905 2020-05-30 Virginia 51 43611 1370
## 4906 2020-05-30 Washington 53 22618 1126
## 4907 2020-05-30 West Virginia 54 1989 75
## 4908 2020-05-30 Wisconsin 55 18515 588
## 4909 2020-05-30 Wyoming 56 898 16
## 4910 2020-05-31 Alabama 1 17952 630
## 4911 2020-05-31 Alaska 2 469 8
## 4912 2020-05-31 Arizona 4 19936 906
## 4913 2020-05-31 Arkansas 5 7253 133
## 4914 2020-05-31 California 6 113114 4242
## 4915 2020-05-31 Colorado 8 26364 1445
## 4916 2020-05-31 Connecticut 9 42201 3944
## 4917 2020-05-31 Delaware 10 9498 366
## 4918 2020-05-31 District of Columbia 11 8801 466
## 4919 2020-05-31 Florida 12 56155 2450
## 4920 2020-05-31 Georgia 13 45051 2019
## 4921 2020-05-31 Guam 66 1144 6
## 4922 2020-05-31 Hawaii 15 642 17
## 4923 2020-05-31 Idaho 16 2855 82
## 4924 2020-05-31 Illinois 17 120588 5426
## 4925 2020-05-31 Indiana 18 35429 2134
## 4926 2020-05-31 Iowa 19 19621 537
## 4927 2020-05-31 Kansas 20 9878 211
## 4928 2020-05-31 Kentucky 21 9937 441
## 4929 2020-05-31 Louisiana 22 40021 2791
## 4930 2020-05-31 Maine 23 2325 89
## 4931 2020-05-31 Maryland 24 53456 2532
## 4932 2020-05-31 Massachusetts 25 96965 6846
## 4933 2020-05-31 Michigan 26 57355 5491
## 4934 2020-05-31 Minnesota 27 24860 1050
## 4935 2020-05-31 Mississippi 28 15501 734
## 4936 2020-05-31 Missouri 29 13297 784
## 4937 2020-05-31 Montana 30 515 17
## 4938 2020-05-31 Nebraska 31 14101 178
## 4939 2020-05-31 Nevada 32 8628 419
## 4940 2020-05-31 New Hampshire 33 4651 245
## 4941 2020-05-31 New Jersey 34 160445 11698
## 4942 2020-05-31 New Mexico 35 7689 356
## 4943 2020-05-31 New York 36 375575 29699
## 4944 2020-05-31 North Carolina 37 28686 911
## 4945 2020-05-31 North Dakota 38 2580 64
## 4946 2020-05-31 Northern Mariana Islands 69 22 2
## 4947 2020-05-31 Ohio 39 35513 2155
## 4948 2020-05-31 Oklahoma 40 6506 334
## 4949 2020-05-31 Oregon 41 4243 153
## 4950 2020-05-31 Pennsylvania 42 76218 5555
## 4951 2020-05-31 Puerto Rico 72 3776 136
## 4952 2020-05-31 Rhode Island 44 14928 718
## 4953 2020-05-31 South Carolina 45 11861 494
## 4954 2020-05-31 South Dakota 46 4993 62
## 4955 2020-05-31 Tennessee 47 22832 360
## 4956 2020-05-31 Texas 48 64974 1683
## 4957 2020-05-31 Utah 49 9829 113
## 4958 2020-05-31 Vermont 50 981 55
## 4959 2020-05-31 Virgin Islands 78 70 6
## 4960 2020-05-31 Virginia 51 44607 1375
## 4961 2020-05-31 Washington 53 22814 1126
## 4962 2020-05-31 West Virginia 54 2010 75
## 4963 2020-05-31 Wisconsin 55 18684 594
## 4964 2020-05-31 Wyoming 56 903 16
## 4965 2020-06-01 Alabama 1 18534 646
## 4966 2020-06-01 Alaska 2 476 8
## 4967 2020-06-01 Arizona 4 20123 918
## 4968 2020-06-01 Arkansas 5 7443 133
## 4969 2020-06-01 California 6 115643 4287
## 4970 2020-06-01 Colorado 8 26563 1458
## 4971 2020-06-01 Connecticut 9 42740 3964
## 4972 2020-06-01 Delaware 10 9605 368
## 4973 2020-06-01 District of Columbia 11 8857 468
## 4974 2020-06-01 Florida 12 56822 2459
## 4975 2020-06-01 Georgia 13 45757 2057
## 4976 2020-06-01 Guam 66 1144 6
## 4977 2020-06-01 Hawaii 15 642 17
## 4978 2020-06-01 Idaho 16 2908 83
## 4979 2020-06-01 Illinois 17 121666 5458
## 4980 2020-06-01 Indiana 18 35684 2142
## 4981 2020-06-01 Iowa 19 19789 558
## 4982 2020-06-01 Kansas 20 10103 217
## 4983 2020-06-01 Kentucky 21 10150 445
## 4984 2020-06-01 Louisiana 22 40452 2801
## 4985 2020-06-01 Maine 23 2349 89
## 4986 2020-06-01 Maryland 24 54035 2552
## 4987 2020-06-01 Massachusetts 25 100805 7035
## 4988 2020-06-01 Michigan 26 58435 5525
## 4989 2020-06-01 Minnesota 27 25218 1060
## 4990 2020-06-01 Mississippi 28 15752 739
## 4991 2020-06-01 Missouri 29 13523 786
## 4992 2020-06-01 Montana 30 519 17
## 4993 2020-06-01 Nebraska 31 14345 183
## 4994 2020-06-01 Nevada 32 8701 420
## 4995 2020-06-01 New Hampshire 33 4685 245
## 4996 2020-06-01 New Jersey 34 160918 11721
## 4997 2020-06-01 New Mexico 35 7800 362
## 4998 2020-06-01 New York 36 376520 29766
## 4999 2020-06-01 North Carolina 37 29368 923
## 5000 2020-06-01 North Dakota 38 2628 64
## 5001 2020-06-01 Northern Mariana Islands 69 22 2
## 5002 2020-06-01 Ohio 39 35984 2206
## 5003 2020-06-01 Oklahoma 40 6573 334
## 5004 2020-06-01 Oregon 41 4303 154
## 5005 2020-06-01 Pennsylvania 42 76734 5574
## 5006 2020-06-01 Puerto Rico 72 3873 136
## 5007 2020-06-01 Rhode Island 44 14991 720
## 5008 2020-06-01 South Carolina 45 12148 500
## 5009 2020-06-01 South Dakota 46 5034 62
## 5010 2020-06-01 Tennessee 47 23242 361
## 5011 2020-06-01 Texas 48 66081 1695
## 5012 2020-06-01 Utah 49 10026 113
## 5013 2020-06-01 Vermont 50 983 55
## 5014 2020-06-01 Virgin Islands 78 70 6
## 5015 2020-06-01 Virginia 51 45398 1392
## 5016 2020-06-01 Washington 53 23272 1133
## 5017 2020-06-01 West Virginia 54 2028 76
## 5018 2020-06-01 Wisconsin 55 18825 597
## 5019 2020-06-01 Wyoming 56 910 17
## 5020 2020-06-02 Alabama 1 18771 653
## 5021 2020-06-02 Alaska 2 497 8
## 5022 2020-06-02 Arizona 4 21250 943
## 5023 2020-06-02 Arkansas 5 7818 136
## 5024 2020-06-02 California 6 118081 4360
## 5025 2020-06-02 Colorado 8 26774 1474
## 5026 2020-06-02 Connecticut 9 42979 3972
## 5027 2020-06-02 Delaware 10 9685 373
## 5028 2020-06-02 District of Columbia 11 8886 470
## 5029 2020-06-02 Florida 12 57439 2529
## 5030 2020-06-02 Georgia 13 46063 2070
## 5031 2020-06-02 Guam 66 1146 6
## 5032 2020-06-02 Hawaii 15 643 17
## 5033 2020-06-02 Idaho 16 2935 83
## 5034 2020-06-02 Illinois 17 123244 5567
## 5035 2020-06-02 Indiana 18 36129 2197
## 5036 2020-06-02 Iowa 19 20017 564
## 5037 2020-06-02 Kansas 20 10143 227
## 5038 2020-06-02 Kentucky 21 10287 451
## 5039 2020-06-02 Louisiana 22 40857 2835
## 5040 2020-06-02 Maine 23 2377 94
## 5041 2020-06-02 Maryland 24 54831 2597
## 5042 2020-06-02 Massachusetts 25 101163 7085
## 5043 2020-06-02 Michigan 26 58680 5562
## 5044 2020-06-02 Minnesota 27 25518 1082
## 5045 2020-06-02 Mississippi 28 16020 767
## 5046 2020-06-02 Missouri 29 13822 797
## 5047 2020-06-02 Montana 30 523 17
## 5048 2020-06-02 Nebraska 31 14611 187
## 5049 2020-06-02 Nevada 32 8858 420
## 5050 2020-06-02 New Hampshire 33 4749 256
## 5051 2020-06-02 New Jersey 34 161545 11770
## 5052 2020-06-02 New Mexico 35 8024 367
## 5053 2020-06-02 New York 36 377881 29847
## 5054 2020-06-02 North Carolina 37 30052 950
## 5055 2020-06-02 North Dakota 38 2649 68
## 5056 2020-06-02 Northern Mariana Islands 69 23 2
## 5057 2020-06-02 Ohio 39 36350 2258
## 5058 2020-06-02 Oklahoma 40 6692 339
## 5059 2020-06-02 Oregon 41 4338 157
## 5060 2020-06-02 Pennsylvania 42 77315 5670
## 5061 2020-06-02 Puerto Rico 72 3935 138
## 5062 2020-06-02 Rhode Island 44 15112 732
## 5063 2020-06-02 South Carolina 45 12415 501
## 5064 2020-06-02 South Dakota 46 5066 62
## 5065 2020-06-02 Tennessee 47 24498 378
## 5066 2020-06-02 Texas 48 67966 1732
## 5067 2020-06-02 Utah 49 10237 113
## 5068 2020-06-02 Vermont 50 988 55
## 5069 2020-06-02 Virgin Islands 78 70 6
## 5070 2020-06-02 Virginia 51 46239 1407
## 5071 2020-06-02 Washington 53 23608 1139
## 5072 2020-06-02 West Virginia 54 2056 78
## 5073 2020-06-02 Wisconsin 55 19223 610
## 5074 2020-06-02 Wyoming 56 912 17
## 5075 2020-06-03 Alabama 1 18851 653
## 5076 2020-06-03 Alaska 2 516 8
## 5077 2020-06-03 Arizona 4 22245 983
## 5078 2020-06-03 Arkansas 5 8067 142
## 5079 2020-06-03 California 6 120407 4422
## 5080 2020-06-03 Colorado 8 27046 1494
## 5081 2020-06-03 Connecticut 9 43091 3989
## 5082 2020-06-03 Delaware 10 9712 375
## 5083 2020-06-03 District of Columbia 11 9016 473
## 5084 2020-06-03 Florida 12 58756 2565
## 5085 2020-06-03 Georgia 13 46711 2092
## 5086 2020-06-03 Guam 66 1146 6
## 5087 2020-06-03 Hawaii 15 643 17
## 5088 2020-06-03 Idaho 16 2990 83
## 5089 2020-06-03 Illinois 17 124279 5665
## 5090 2020-06-03 Indiana 18 36609 2207
## 5091 2020-06-03 Iowa 19 20376 574
## 5092 2020-06-03 Kansas 20 10281 227
## 5093 2020-06-03 Kentucky 21 10485 458
## 5094 2020-06-03 Louisiana 22 41244 2870
## 5095 2020-06-03 Maine 23 2418 95
## 5096 2020-06-03 Maryland 24 55617 2641
## 5097 2020-06-03 Massachusetts 25 101592 7152
## 5098 2020-06-03 Michigan 26 58990 5579
## 5099 2020-06-03 Minnesota 27 25881 1097
## 5100 2020-06-03 Mississippi 28 16322 782
## 5101 2020-06-03 Missouri 29 14020 801
## 5102 2020-06-03 Montana 30 525 17
## 5103 2020-06-03 Nebraska 31 14866 189
## 5104 2020-06-03 Nevada 32 8950 429
## 5105 2020-06-03 New Hampshire 33 4795 265
## 5106 2020-06-03 New Jersey 34 162068 11880
## 5107 2020-06-03 New Mexico 35 8140 375
## 5108 2020-06-03 New York 36 378924 29918
## 5109 2020-06-03 North Carolina 37 31013 971
## 5110 2020-06-03 North Dakota 38 2682 69
## 5111 2020-06-03 Northern Mariana Islands 69 24 2
## 5112 2020-06-03 Ohio 39 36792 2299
## 5113 2020-06-03 Oklahoma 40 6805 341
## 5114 2020-06-03 Oregon 41 4399 159
## 5115 2020-06-03 Pennsylvania 42 77871 5742
## 5116 2020-06-03 Puerto Rico 72 4023 140
## 5117 2020-06-03 Rhode Island 44 15219 742
## 5118 2020-06-03 South Carolina 45 12651 518
## 5119 2020-06-03 South Dakota 46 5161 62
## 5120 2020-06-03 Tennessee 47 25024 386
## 5121 2020-06-03 Texas 48 69546 1766
## 5122 2020-06-03 Utah 49 10558 117
## 5123 2020-06-03 Vermont 50 990 55
## 5124 2020-06-03 Virgin Islands 78 71 6
## 5125 2020-06-03 Virginia 51 46905 1428
## 5126 2020-06-03 Washington 53 23776 1145
## 5127 2020-06-03 West Virginia 54 2077 78
## 5128 2020-06-03 Wisconsin 55 19896 618
## 5129 2020-06-03 Wyoming 56 915 17
## 5130 2020-06-04 Alabama 1 19072 653
## 5131 2020-06-04 Alaska 2 542 8
## 5132 2020-06-04 Arizona 4 22818 1000
## 5133 2020-06-04 Arkansas 5 8425 151
## 5134 2020-06-04 California 6 122917 4484
## 5135 2020-06-04 Colorado 8 27346 1512
## 5136 2020-06-04 Connecticut 9 43239 4007
## 5137 2020-06-04 Delaware 10 9746 386
## 5138 2020-06-04 District of Columbia 11 9120 475
## 5139 2020-06-04 Florida 12 60175 2606
## 5140 2020-06-04 Georgia 13 47528 2116
## 5141 2020-06-04 Guam 66 1148 6
## 5142 2020-06-04 Hawaii 15 644 17
## 5143 2020-06-04 Idaho 16 3054 83
## 5144 2020-06-04 Illinois 17 125149 5772
## 5145 2020-06-04 Indiana 18 37005 2231
## 5146 2020-06-04 Iowa 19 20943 590
## 5147 2020-06-04 Kansas 20 10332 230
## 5148 2020-06-04 Kentucky 21 10781 469
## 5149 2020-06-04 Louisiana 22 41673 2883
## 5150 2020-06-04 Maine 23 2446 95
## 5151 2020-06-04 Maryland 24 56490 2668
## 5152 2020-06-04 Massachusetts 25 102063 7201
## 5153 2020-06-04 Michigan 26 59215 5604
## 5154 2020-06-04 Minnesota 27 26284 1126
## 5155 2020-06-04 Mississippi 28 16560 794
## 5156 2020-06-04 Missouri 29 14286 806
## 5157 2020-06-04 Montana 30 537 17
## 5158 2020-06-04 Nebraska 31 15117 193
## 5159 2020-06-04 Nevada 32 9118 429
## 5160 2020-06-04 New Hampshire 33 4876 273
## 5161 2020-06-04 New Jersey 34 162530 11970
## 5162 2020-06-04 New Mexico 35 8353 383
## 5163 2020-06-04 New York 36 379977 30011
## 5164 2020-06-04 North Carolina 37 32276 993
## 5165 2020-06-04 North Dakota 38 2709 69
## 5166 2020-06-04 Northern Mariana Islands 69 26 2
## 5167 2020-06-04 Ohio 39 37282 2339
## 5168 2020-06-04 Oklahoma 40 6907 344
## 5169 2020-06-04 Oregon 41 4475 159
## 5170 2020-06-04 Pennsylvania 42 78428 5862
## 5171 2020-06-04 Puerto Rico 72 4508 140
## 5172 2020-06-04 Rhode Island 44 15325 756
## 5173 2020-06-04 South Carolina 45 13005 525
## 5174 2020-06-04 South Dakota 46 5247 64
## 5175 2020-06-04 Tennessee 47 25374 401
## 5176 2020-06-04 Texas 48 71330 1793
## 5177 2020-06-04 Utah 49 10858 117
## 5178 2020-06-04 Vermont 50 1026 55
## 5179 2020-06-04 Virgin Islands 78 71 6
## 5180 2020-06-04 Virginia 51 47856 1445
## 5181 2020-06-04 Washington 53 23999 1150
## 5182 2020-06-04 West Virginia 54 2102 79
## 5183 2020-06-04 Wisconsin 55 20359 627
## 5184 2020-06-04 Wyoming 56 921 17
## 5185 2020-06-05 Alabama 1 19387 676
## 5186 2020-06-05 Alaska 2 565 8
## 5187 2020-06-05 Arizona 4 24369 1016
## 5188 2020-06-05 Arkansas 5 8651 152
## 5189 2020-06-05 California 6 126510 4550
## 5190 2020-06-05 Colorado 8 27601 1524
## 5191 2020-06-05 Connecticut 9 43460 4038
## 5192 2020-06-05 Delaware 10 9773 388
## 5193 2020-06-05 District of Columbia 11 9199 479
## 5194 2020-06-05 Florida 12 61480 2659
## 5195 2020-06-05 Georgia 13 48280 2143
## 5196 2020-06-05 Guam 66 1148 6
## 5197 2020-06-05 Hawaii 15 653 17
## 5198 2020-06-05 Idaho 16 3111 83
## 5199 2020-06-05 Illinois 17 126317 5834
## 5200 2020-06-05 Indiana 18 37499 2258
## 5201 2020-06-05 Iowa 19 21332 597
## 5202 2020-06-05 Kansas 20 10493 233
## 5203 2020-06-05 Kentucky 21 11051 476
## 5204 2020-06-05 Louisiana 22 42100 2912
## 5205 2020-06-05 Maine 23 2482 98
## 5206 2020-06-05 Maryland 24 57407 2702
## 5207 2020-06-05 Massachusetts 25 102557 7235
## 5208 2020-06-05 Michigan 26 63744 5854
## 5209 2020-06-05 Minnesota 27 26991 1159
## 5210 2020-06-05 Mississippi 28 16769 803
## 5211 2020-06-05 Missouri 29 14515 816
## 5212 2020-06-05 Montana 30 539 18
## 5213 2020-06-05 Nebraska 31 15379 193
## 5214 2020-06-05 Nevada 32 9306 436
## 5215 2020-06-05 New Hampshire 33 4953 278
## 5216 2020-06-05 New Jersey 34 163336 12049
## 5217 2020-06-05 New Mexico 35 8672 387
## 5218 2020-06-05 New York 36 381019 30066
## 5219 2020-06-05 North Carolina 37 33417 1001
## 5220 2020-06-05 North Dakota 38 2748 74
## 5221 2020-06-05 Northern Mariana Islands 69 26 2
## 5222 2020-06-05 Ohio 39 37758 2355
## 5223 2020-06-05 Oklahoma 40 7004 345
## 5224 2020-06-05 Oregon 41 4585 161
## 5225 2020-06-05 Pennsylvania 42 78908 5952
## 5226 2020-06-05 Puerto Rico 72 4620 141
## 5227 2020-06-05 Rhode Island 44 15441 772
## 5228 2020-06-05 South Carolina 45 13453 538
## 5229 2020-06-05 South Dakota 46 5277 65
## 5230 2020-06-05 Tennessee 47 25799 405
## 5231 2020-06-05 Texas 48 73323 1821
## 5232 2020-06-05 Utah 49 11344 120
## 5233 2020-06-05 Vermont 50 1027 55
## 5234 2020-06-05 Virgin Islands 78 71 6
## 5235 2020-06-05 Virginia 51 48532 1453
## 5236 2020-06-05 Washington 53 24546 1160
## 5237 2020-06-05 West Virginia 54 2119 84
## 5238 2020-06-05 Wisconsin 55 20723 634
## 5239 2020-06-05 Wyoming 56 933 17
## 5240 2020-06-06 Alabama 1 20043 689
## 5241 2020-06-06 Alaska 2 579 8
## 5242 2020-06-06 Arizona 4 25517 1046
## 5243 2020-06-06 Arkansas 5 9101 154
## 5244 2020-06-06 California 6 129147 4626
## 5245 2020-06-06 Colorado 8 27834 1527
## 5246 2020-06-06 Connecticut 9 43818 4055
## 5247 2020-06-06 Delaware 10 9845 390
## 5248 2020-06-06 District of Columbia 11 9269 483
## 5249 2020-06-06 Florida 12 62750 2687
## 5250 2020-06-06 Georgia 13 48943 2147
## 5251 2020-06-06 Guam 66 1148 6
## 5252 2020-06-06 Hawaii 15 661 17
## 5253 2020-06-06 Idaho 16 3139 83
## 5254 2020-06-06 Illinois 17 127251 5898
## 5255 2020-06-06 Indiana 18 37928 2292
## 5256 2020-06-06 Iowa 19 21527 602
## 5257 2020-06-06 Kansas 20 10517 234
## 5258 2020-06-06 Kentucky 21 11359 480
## 5259 2020-06-06 Louisiana 22 42597 2925
## 5260 2020-06-06 Maine 23 2524 98
## 5261 2020-06-06 Maryland 24 58099 2740
## 5262 2020-06-06 Massachusetts 25 103132 7289
## 5263 2020-06-06 Michigan 26 64196 5894
## 5264 2020-06-06 Minnesota 27 27512 1181
## 5265 2020-06-06 Mississippi 28 17034 811
## 5266 2020-06-06 Missouri 29 14659 823
## 5267 2020-06-06 Montana 30 540 18
## 5268 2020-06-06 Nebraska 31 15543 196
## 5269 2020-06-06 Nevada 32 9494 437
## 5270 2020-06-06 New Hampshire 33 5019 283
## 5271 2020-06-06 New Jersey 34 163893 12106
## 5272 2020-06-06 New Mexico 35 8800 392
## 5273 2020-06-06 New York 36 382102 30123
## 5274 2020-06-06 North Carolina 37 34809 1020
## 5275 2020-06-06 North Dakota 38 2819 75
## 5276 2020-06-06 Northern Mariana Islands 69 26 2
## 5277 2020-06-06 Ohio 39 38111 2370
## 5278 2020-06-06 Oklahoma 40 7060 347
## 5279 2020-06-06 Oregon 41 4672 163
## 5280 2020-06-06 Pennsylvania 42 79507 5986
## 5281 2020-06-06 Puerto Rico 72 4915 142
## 5282 2020-06-06 Rhode Island 44 15441 772
## 5283 2020-06-06 South Carolina 45 13916 545
## 5284 2020-06-06 South Dakota 46 5367 65
## 5285 2020-06-06 Tennessee 47 26359 413
## 5286 2020-06-06 Texas 48 75077 1840
## 5287 2020-06-06 Utah 49 11866 121
## 5288 2020-06-06 Vermont 50 1046 55
## 5289 2020-06-06 Virgin Islands 78 71 6
## 5290 2020-06-06 Virginia 51 49397 1460
## 5291 2020-06-06 Washington 53 24767 1163
## 5292 2020-06-06 West Virginia 54 2136 84
## 5293 2020-06-06 Wisconsin 55 20997 646
## 5294 2020-06-06 Wyoming 56 939 17
## 5295 2020-06-07 Alabama 1 20500 692
## 5296 2020-06-07 Alaska 2 588 8
## 5297 2020-06-07 Arizona 4 26924 1048
## 5298 2020-06-07 Arkansas 5 9426 154
## 5299 2020-06-07 California 6 131997 4653
## 5300 2020-06-07 Colorado 8 27987 1527
## 5301 2020-06-07 Connecticut 9 43968 4071
## 5302 2020-06-07 Delaware 10 9942 398
## 5303 2020-06-07 District of Columbia 11 9332 489
## 5304 2020-06-07 Florida 12 63930 2699
## 5305 2020-06-07 Georgia 13 49371 2148
## 5306 2020-06-07 Guam 66 1148 6
## 5307 2020-06-07 Hawaii 15 663 17
## 5308 2020-06-07 Idaho 16 3153 83
## 5309 2020-06-07 Illinois 17 128070 5939
## 5310 2020-06-07 Indiana 18 38328 2303
## 5311 2020-06-07 Iowa 19 21794 606
## 5312 2020-06-07 Kansas 20 10549 234
## 5313 2020-06-07 Kentucky 21 11393 481
## 5314 2020-06-07 Louisiana 22 42927 2936
## 5315 2020-06-07 Maine 23 2570 99
## 5316 2020-06-07 Maryland 24 58593 2749
## 5317 2020-06-07 Massachusetts 25 103436 7316
## 5318 2020-06-07 Michigan 26 64615 5898
## 5319 2020-06-07 Minnesota 27 27897 1197
## 5320 2020-06-07 Mississippi 28 17270 817
## 5321 2020-06-07 Missouri 29 14985 823
## 5322 2020-06-07 Montana 30 545 18
## 5323 2020-06-07 Nebraska 31 15634 196
## 5324 2020-06-07 Nevada 32 9673 438
## 5325 2020-06-07 New Hampshire 33 5043 286
## 5326 2020-06-07 New Jersey 34 164164 12176
## 5327 2020-06-07 New Mexico 35 8940 396
## 5328 2020-06-07 New York 36 382879 30183
## 5329 2020-06-07 North Carolina 37 35663 1024
## 5330 2020-06-07 North Dakota 38 2864 75
## 5331 2020-06-07 Northern Mariana Islands 69 27 2
## 5332 2020-06-07 Ohio 39 38476 2377
## 5333 2020-06-07 Oklahoma 40 7151 348
## 5334 2020-06-07 Oregon 41 4809 164
## 5335 2020-06-07 Pennsylvania 42 80001 5997
## 5336 2020-06-07 Puerto Rico 72 4985 142
## 5337 2020-06-07 Rhode Island 44 15441 772
## 5338 2020-06-07 South Carolina 45 14286 546
## 5339 2020-06-07 South Dakota 46 5438 65
## 5340 2020-06-07 Tennessee 47 26811 414
## 5341 2020-06-07 Texas 48 75948 1846
## 5342 2020-06-07 Utah 49 12084 121
## 5343 2020-06-07 Vermont 50 1063 55
## 5344 2020-06-07 Virgin Islands 78 71 6
## 5345 2020-06-07 Virginia 51 50681 1472
## 5346 2020-06-07 Washington 53 25064 1163
## 5347 2020-06-07 West Virginia 54 2144 84
## 5348 2020-06-07 Wisconsin 55 21246 648
## 5349 2020-06-07 Wyoming 56 947 17
## 5350 2020-06-08 Alabama 1 20925 718
## 5351 2020-06-08 Alaska 2 607 8
## 5352 2020-06-08 Arizona 4 27761 1052
## 5353 2020-06-08 Arkansas 5 9740 155
## 5354 2020-06-08 California 6 134287 4679
## 5355 2020-06-08 Colorado 8 28169 1543
## 5356 2020-06-08 Connecticut 9 44092 4084
## 5357 2020-06-08 Delaware 10 9972 398
## 5358 2020-06-08 District of Columbia 11 9389 491
## 5359 2020-06-08 Florida 12 64896 2711
## 5360 2020-06-08 Georgia 13 49995 2176
## 5361 2020-06-08 Guam 66 1149 6
## 5362 2020-06-08 Hawaii 15 664 17
## 5363 2020-06-08 Idaho 16 3197 83
## 5364 2020-06-08 Illinois 17 129543 6142
## 5365 2020-06-08 Indiana 18 38553 2316
## 5366 2020-06-08 Iowa 19 22111 623
## 5367 2020-06-08 Kansas 20 10724 237
## 5368 2020-06-08 Kentucky 21 11701 487
## 5369 2020-06-08 Louisiana 22 43163 2944
## 5370 2020-06-08 Maine 23 2588 99
## 5371 2020-06-08 Maryland 24 59024 2776
## 5372 2020-06-08 Massachusetts 25 103626 7353
## 5373 2020-06-08 Michigan 26 64911 5916
## 5374 2020-06-08 Minnesota 27 28235 1208
## 5375 2020-06-08 Mississippi 28 17768 837
## 5376 2020-06-08 Missouri 29 15159 832
## 5377 2020-06-08 Montana 30 548 18
## 5378 2020-06-08 Nebraska 31 15752 196
## 5379 2020-06-08 Nevada 32 9815 442
## 5380 2020-06-08 New Hampshire 33 5079 286
## 5381 2020-06-08 New Jersey 34 164497 12214
## 5382 2020-06-08 New Mexico 35 9062 400
## 5383 2020-06-08 New York 36 383591 30239
## 5384 2020-06-08 North Carolina 37 36581 1041
## 5385 2020-06-08 North Dakota 38 2883 75
## 5386 2020-06-08 Northern Mariana Islands 69 28 2
## 5387 2020-06-08 Ohio 39 38837 2404
## 5388 2020-06-08 Oklahoma 40 7206 348
## 5389 2020-06-08 Oregon 41 4927 164
## 5390 2020-06-08 Pennsylvania 42 80432 6007
## 5391 2020-06-08 Puerto Rico 72 5046 142
## 5392 2020-06-08 Rhode Island 44 15642 799
## 5393 2020-06-08 South Carolina 45 14800 557
## 5394 2020-06-08 South Dakota 46 5471 65
## 5395 2020-06-08 Tennessee 47 27217 417
## 5396 2020-06-08 Texas 48 77326 1856
## 5397 2020-06-08 Utah 49 12378 124
## 5398 2020-06-08 Vermont 50 1075 55
## 5399 2020-06-08 Virgin Islands 78 71 6
## 5400 2020-06-08 Virginia 51 51251 1477
## 5401 2020-06-08 Washington 53 25593 1168
## 5402 2020-06-08 West Virginia 54 2161 84
## 5403 2020-06-08 Wisconsin 55 21463 650
## 5404 2020-06-08 Wyoming 56 960 17
## 5405 2020-06-09 Alabama 1 21422 729
## 5406 2020-06-09 Alaska 2 620 9
## 5407 2020-06-09 Arizona 4 28396 1074
## 5408 2020-06-09 Arkansas 5 10080 161
## 5409 2020-06-09 California 6 137245 4775
## 5410 2020-06-09 Colorado 8 28333 1553
## 5411 2020-06-09 Connecticut 9 44179 4097
## 5412 2020-06-09 Delaware 10 10020 410
## 5413 2020-06-09 District of Columbia 11 9474 495
## 5414 2020-06-09 Florida 12 65992 2764
## 5415 2020-06-09 Georgia 13 50769 2250
## 5416 2020-06-09 Guam 66 1149 6
## 5417 2020-06-09 Hawaii 15 670 17
## 5418 2020-06-09 Idaho 16 3226 85
## 5419 2020-06-09 Illinois 17 130321 6237
## 5420 2020-06-09 Indiana 18 38985 2339
## 5421 2020-06-09 Iowa 19 22271 629
## 5422 2020-06-09 Kansas 20 10786 238
## 5423 2020-06-09 Kentucky 21 11891 494
## 5424 2020-06-09 Louisiana 22 43725 2957
## 5425 2020-06-09 Maine 23 2606 100
## 5426 2020-06-09 Maryland 24 59543 2811
## 5427 2020-06-09 Massachusetts 25 103889 7408
## 5428 2020-06-09 Michigan 26 65190 5946
## 5429 2020-06-09 Minnesota 27 28534 1228
## 5430 2020-06-09 Mississippi 28 18109 847
## 5431 2020-06-09 Missouri 29 15396 854
## 5432 2020-06-09 Montana 30 554 18
## 5433 2020-06-09 Nebraska 31 15888 199
## 5434 2020-06-09 Nevada 32 10046 445
## 5435 2020-06-09 New Hampshire 33 5132 294
## 5436 2020-06-09 New Jersey 34 164796 12303
## 5437 2020-06-09 New Mexico 35 9105 404
## 5438 2020-06-09 New York 36 384281 30309
## 5439 2020-06-09 North Carolina 37 37393 1069
## 5440 2020-06-09 North Dakota 38 2904 75
## 5441 2020-06-09 Northern Mariana Islands 69 30 2
## 5442 2020-06-09 Ohio 39 39162 2421
## 5443 2020-06-09 Oklahoma 40 7364 353
## 5444 2020-06-09 Oregon 41 5027 169
## 5445 2020-06-09 Pennsylvania 42 80964 6070
## 5446 2020-06-09 Puerto Rico 72 5185 142
## 5447 2020-06-09 Rhode Island 44 15691 808
## 5448 2020-06-09 South Carolina 45 15228 568
## 5449 2020-06-09 South Dakota 46 5523 68
## 5450 2020-06-09 Tennessee 47 27865 430
## 5451 2020-06-09 Texas 48 79271 1886
## 5452 2020-06-09 Utah 49 12639 127
## 5453 2020-06-09 Vermont 50 1084 55
## 5454 2020-06-09 Virgin Islands 78 72 6
## 5455 2020-06-09 Virginia 51 51738 1496
## 5456 2020-06-09 Washington 53 25796 1181
## 5457 2020-06-09 West Virginia 54 2179 84
## 5458 2020-06-09 Wisconsin 55 21738 662
## 5459 2020-06-09 Wyoming 56 970 17
## 5460 2020-06-10 Alabama 1 21989 744
## 5461 2020-06-10 Alaska 2 642 9
## 5462 2020-06-10 Arizona 4 29981 1100
## 5463 2020-06-10 Arkansas 5 10368 165
## 5464 2020-06-10 California 6 140139 4869
## 5465 2020-06-10 Colorado 8 28484 1573
## 5466 2020-06-10 Connecticut 9 44347 4120
## 5467 2020-06-10 Delaware 10 10056 413
## 5468 2020-06-10 District of Columbia 11 9537 499
## 5469 2020-06-10 Florida 12 67363 2800
## 5470 2020-06-10 Georgia 13 51465 2292
## 5471 2020-06-10 Guam 66 1149 6
## 5472 2020-06-10 Hawaii 15 673 17
## 5473 2020-06-10 Idaho 16 3262 85
## 5474 2020-06-10 Illinois 17 130889 6302
## 5475 2020-06-10 Indiana 18 39297 2355
## 5476 2020-06-10 Iowa 19 22733 638
## 5477 2020-06-10 Kansas 20 10931 241
## 5478 2020-06-10 Kentucky 21 12029 498
## 5479 2020-06-10 Louisiana 22 44143 2968
## 5480 2020-06-10 Maine 23 2637 100
## 5481 2020-06-10 Maryland 24 60114 2844
## 5482 2020-06-10 Massachusetts 25 104156 7454
## 5483 2020-06-10 Michigan 26 65377 5958
## 5484 2020-06-10 Minnesota 27 28900 1267
## 5485 2020-06-10 Mississippi 28 18483 868
## 5486 2020-06-10 Missouri 29 15662 861
## 5487 2020-06-10 Montana 30 561 18
## 5488 2020-06-10 Nebraska 31 16025 209
## 5489 2020-06-10 Nevada 32 10216 449
## 5490 2020-06-10 New Hampshire 33 5178 301
## 5491 2020-06-10 New Jersey 34 165346 12377
## 5492 2020-06-10 New Mexico 35 9250 410
## 5493 2020-06-10 New York 36 384945 30376
## 5494 2020-06-10 North Carolina 37 38305 1096
## 5495 2020-06-10 North Dakota 38 2944 76
## 5496 2020-06-10 Northern Mariana Islands 69 30 2
## 5497 2020-06-10 Ohio 39 39575 2457
## 5498 2020-06-10 Oklahoma 40 7480 355
## 5499 2020-06-10 Oregon 41 5099 169
## 5500 2020-06-10 Pennsylvania 42 81410 6143
## 5501 2020-06-10 Puerto Rico 72 5329 143
## 5502 2020-06-10 Rhode Island 44 15756 812
## 5503 2020-06-10 South Carolina 45 15759 575
## 5504 2020-06-10 South Dakota 46 5604 69
## 5505 2020-06-10 Tennessee 47 28379 436
## 5506 2020-06-10 Texas 48 81771 1916
## 5507 2020-06-10 Utah 49 12982 128
## 5508 2020-06-10 Vermont 50 1095 55
## 5509 2020-06-10 Virgin Islands 78 72 6
## 5510 2020-06-10 Virginia 51 52177 1514
## 5511 2020-06-10 Washington 53 25940 1183
## 5512 2020-06-10 West Virginia 54 2193 85
## 5513 2020-06-10 Wisconsin 55 24091 679
## 5514 2020-06-10 Wyoming 56 980 18
## 5515 2020-06-11 Alabama 1 22845 755
## 5516 2020-06-11 Alaska 2 666 9
## 5517 2020-06-11 Arizona 4 31525 1130
## 5518 2020-06-11 Arkansas 5 10816 171
## 5519 2020-06-11 California 6 143709 4941
## 5520 2020-06-11 Colorado 8 28632 1583
## 5521 2020-06-11 Connecticut 9 44461 4146
## 5522 2020-06-11 Delaware 10 10106 414
## 5523 2020-06-11 District of Columbia 11 9589 502
## 5524 2020-06-11 Florida 12 69061 2847
## 5525 2020-06-11 Georgia 13 52332 2337
## 5526 2020-06-11 Guam 66 1152 6
## 5527 2020-06-11 Hawaii 15 680 17
## 5528 2020-06-11 Idaho 16 3303 86
## 5529 2020-06-11 Illinois 17 131731 6388
## 5530 2020-06-11 Indiana 18 39714 2380
## 5531 2020-06-11 Iowa 19 23103 641
## 5532 2020-06-11 Kansas 20 10984 242
## 5533 2020-06-11 Kentucky 21 12128 513
## 5534 2020-06-11 Louisiana 22 44585 2987
## 5535 2020-06-11 Maine 23 2667 100
## 5536 2020-06-11 Maryland 24 60823 2875
## 5537 2020-06-11 Massachusetts 25 104667 7492
## 5538 2020-06-11 Michigan 26 65627 5985
## 5539 2020-06-11 Minnesota 27 29347 1280
## 5540 2020-06-11 Mississippi 28 18483 868
## 5541 2020-06-11 Missouri 29 15924 873
## 5542 2020-06-11 Montana 30 563 18
## 5543 2020-06-11 Nebraska 31 16315 217
## 5544 2020-06-11 Nevada 32 10464 460
## 5545 2020-06-11 New Hampshire 33 5209 308
## 5546 2020-06-11 New Jersey 34 165816 12443
## 5547 2020-06-11 New Mexico 35 9368 421
## 5548 2020-06-11 New York 36 385669 30431
## 5549 2020-06-11 North Carolina 37 39735 1114
## 5550 2020-06-11 North Dakota 38 2983 77
## 5551 2020-06-11 Northern Mariana Islands 69 30 2
## 5552 2020-06-11 Ohio 39 40004 2490
## 5553 2020-06-11 Oklahoma 40 7626 357
## 5554 2020-06-11 Oregon 41 5252 171
## 5555 2020-06-11 Pennsylvania 42 81944 6187
## 5556 2020-06-11 Puerto Rico 72 5352 144
## 5557 2020-06-11 Rhode Island 44 15862 823
## 5558 2020-06-11 South Carolina 45 16441 588
## 5559 2020-06-11 South Dakota 46 5665 73
## 5560 2020-06-11 Tennessee 47 28766 441
## 5561 2020-06-11 Texas 48 83772 1942
## 5562 2020-06-11 Utah 49 13366 131
## 5563 2020-06-11 Vermont 50 1110 55
## 5564 2020-06-11 Virgin Islands 78 72 6
## 5565 2020-06-11 Virginia 51 52647 1520
## 5566 2020-06-11 Washington 53 26172 1198
## 5567 2020-06-11 West Virginia 54 2217 86
## 5568 2020-06-11 Wisconsin 55 24411 691
## 5569 2020-06-11 Wyoming 56 1009 18
## 5570 2020-06-12 Alabama 1 23710 769
## 5571 2020-06-12 Alaska 2 688 10
## 5572 2020-06-12 Arizona 4 33167 1157
## 5573 2020-06-12 Arkansas 5 11547 176
## 5574 2020-06-12 California 6 147285 4986
## 5575 2020-06-12 Colorado 8 28807 1595
## 5576 2020-06-12 Connecticut 9 44689 4159
## 5577 2020-06-12 Delaware 10 10173 414
## 5578 2020-06-12 District of Columbia 11 9654 506
## 5579 2020-06-12 Florida 12 70963 2876
## 5580 2020-06-12 Georgia 13 53201 2384
## 5581 2020-06-12 Guam 66 1153 6
## 5582 2020-06-12 Hawaii 15 694 17
## 5583 2020-06-12 Idaho 16 3354 87
## 5584 2020-06-12 Illinois 17 132489 6469
## 5585 2020-06-12 Indiana 18 40114 2396
## 5586 2020-06-12 Iowa 19 23455 650
## 5587 2020-06-12 Kansas 20 11152 243
## 5588 2020-06-12 Kentucky 21 12352 525
## 5589 2020-06-12 Louisiana 22 45108 2996
## 5590 2020-06-12 Maine 23 2721 100
## 5591 2020-06-12 Maryland 24 61262 2900
## 5592 2020-06-12 Massachusetts 25 105059 7538
## 5593 2020-06-12 Michigan 26 65881 5994
## 5594 2020-06-12 Minnesota 27 29826 1305
## 5595 2020-06-12 Mississippi 28 19091 881
## 5596 2020-06-12 Missouri 29 16111 884
## 5597 2020-06-12 Montana 30 573 18
## 5598 2020-06-12 Nebraska 31 16513 221
## 5599 2020-06-12 Nevada 32 10704 462
## 5600 2020-06-12 New Hampshire 33 5251 315
## 5601 2020-06-12 New Jersey 34 166164 12489
## 5602 2020-06-12 New Mexico 35 9526 426
## 5603 2020-06-12 New York 36 386490 30511
## 5604 2020-06-12 North Carolina 37 41467 1128
## 5605 2020-06-12 North Dakota 38 3019 77
## 5606 2020-06-12 Northern Mariana Islands 69 30 2
## 5607 2020-06-12 Ohio 39 40424 2508
## 5608 2020-06-12 Oklahoma 40 7848 359
## 5609 2020-06-12 Oregon 41 5388 174
## 5610 2020-06-12 Pennsylvania 42 82578 6229
## 5611 2020-06-12 Puerto Rico 72 5536 146
## 5612 2020-06-12 Rhode Island 44 15947 833
## 5613 2020-06-12 South Carolina 45 17170 593
## 5614 2020-06-12 South Dakota 46 5742 74
## 5615 2020-06-12 Tennessee 47 29218 461
## 5616 2020-06-12 Texas 48 86031 1965
## 5617 2020-06-12 Utah 49 13681 139
## 5618 2020-06-12 Vermont 50 1119 55
## 5619 2020-06-12 Virgin Islands 78 72 6
## 5620 2020-06-12 Virginia 51 53211 1534
## 5621 2020-06-12 Washington 53 26576 1207
## 5622 2020-06-12 West Virginia 54 2249 88
## 5623 2020-06-12 Wisconsin 55 24733 698
## 5624 2020-06-12 Wyoming 56 1027 18
## 5625 2020-06-13 Alabama 1 24601 773
## 5626 2020-06-13 Alaska 2 722 10
## 5627 2020-06-13 Arizona 4 34773 1190
## 5628 2020-06-13 Arkansas 5 12095 177
## 5629 2020-06-13 California 6 150434 5059
## 5630 2020-06-13 Colorado 8 29002 1598
## 5631 2020-06-13 Connecticut 9 44994 4186
## 5632 2020-06-13 Delaware 10 10229 419
## 5633 2020-06-13 District of Columbia 11 9709 511
## 5634 2020-06-13 Florida 12 73544 2924
## 5635 2020-06-13 Georgia 13 54178 2411
## 5636 2020-06-13 Guam 66 1154 6
## 5637 2020-06-13 Hawaii 15 711 17
## 5638 2020-06-13 Idaho 16 3399 87
## 5639 2020-06-13 Illinois 17 133117 6491
## 5640 2020-06-13 Indiana 18 40535 2413
## 5641 2020-06-13 Iowa 19 23792 651
## 5642 2020-06-13 Kansas 20 11195 244
## 5643 2020-06-13 Kentucky 21 12605 527
## 5644 2020-06-13 Louisiana 22 46396 3004
## 5645 2020-06-13 Maine 23 2757 100
## 5646 2020-06-13 Maryland 24 61935 2926
## 5647 2020-06-13 Massachusetts 25 105395 7576
## 5648 2020-06-13 Michigan 26 66024 6017
## 5649 2020-06-13 Minnesota 27 30203 1314
## 5650 2020-06-13 Mississippi 28 19348 889
## 5651 2020-06-13 Missouri 29 16327 890
## 5652 2020-06-13 Montana 30 588 18
## 5653 2020-06-13 Nebraska 31 16634 221
## 5654 2020-06-13 Nevada 32 10992 463
## 5655 2020-06-13 New Hampshire 33 5299 318
## 5656 2020-06-13 New Jersey 34 166605 12589
## 5657 2020-06-13 New Mexico 35 9621 431
## 5658 2020-06-13 New York 36 387402 30565
## 5659 2020-06-13 North Carolina 37 42911 1135
## 5660 2020-06-13 North Dakota 38 3061 77
## 5661 2020-06-13 Northern Mariana Islands 69 30 2
## 5662 2020-06-13 Ohio 39 40848 2554
## 5663 2020-06-13 Oklahoma 40 8073 359
## 5664 2020-06-13 Oregon 41 5543 175
## 5665 2020-06-13 Pennsylvania 42 82988 6264
## 5666 2020-06-13 Puerto Rico 72 5690 146
## 5667 2020-06-13 Rhode Island 44 15947 833
## 5668 2020-06-13 South Carolina 45 17955 599
## 5669 2020-06-13 South Dakota 46 5833 75
## 5670 2020-06-13 Tennessee 47 29616 465
## 5671 2020-06-13 Texas 48 88120 1989
## 5672 2020-06-13 Utah 49 14061 139
## 5673 2020-06-13 Vermont 50 1125 55
## 5674 2020-06-13 Virgin Islands 78 72 6
## 5675 2020-06-13 Virginia 51 53869 1541
## 5676 2020-06-13 Washington 53 26920 1216
## 5677 2020-06-13 West Virginia 54 2274 88
## 5678 2020-06-13 Wisconsin 55 25026 700
## 5679 2020-06-13 Wyoming 56 1050 18
## 5680 2020-06-14 Alabama 1 25615 773
## 5681 2020-06-14 Alaska 2 734 10
## 5682 2020-06-14 Arizona 4 35953 1194
## 5683 2020-06-14 Arkansas 5 12501 179
## 5684 2020-06-14 California 6 152953 5089
## 5685 2020-06-14 Colorado 8 29115 1599
## 5686 2020-06-14 Connecticut 9 45088 4201
## 5687 2020-06-14 Delaware 10 10264 422
## 5688 2020-06-14 District of Columbia 11 9767 515
## 5689 2020-06-14 Florida 12 75560 2930
## 5690 2020-06-14 Georgia 13 54874 2416
## 5691 2020-06-14 Guam 66 1154 6
## 5692 2020-06-14 Hawaii 15 716 17
## 5693 2020-06-14 Idaho 16 3413 88
## 5694 2020-06-14 Illinois 17 133719 6512
## 5695 2020-06-14 Indiana 18 40901 2422
## 5696 2020-06-14 Iowa 19 23959 652
## 5697 2020-06-14 Kansas 20 11247 244
## 5698 2020-06-14 Kentucky 21 12652 527
## 5699 2020-06-14 Louisiana 22 46732 3014
## 5700 2020-06-14 Maine 23 2793 100
## 5701 2020-06-14 Maryland 24 62328 2939
## 5702 2020-06-14 Massachusetts 25 105603 7624
## 5703 2020-06-14 Michigan 26 66246 6020
## 5704 2020-06-14 Minnesota 27 30502 1329
## 5705 2020-06-14 Mississippi 28 19516 891
## 5706 2020-06-14 Missouri 29 16384 890
## 5707 2020-06-14 Montana 30 601 19
## 5708 2020-06-14 Nebraska 31 16735 221
## 5709 2020-06-14 Nevada 32 11199 464
## 5710 2020-06-14 New Hampshire 33 5318 320
## 5711 2020-06-14 New Jersey 34 166881 12625
## 5712 2020-06-14 New Mexico 35 9723 435
## 5713 2020-06-14 New York 36 388096 30605
## 5714 2020-06-14 North Carolina 37 44199 1139
## 5715 2020-06-14 North Dakota 38 3083 77
## 5716 2020-06-14 Northern Mariana Islands 69 30 2
## 5717 2020-06-14 Ohio 39 41148 2557
## 5718 2020-06-14 Oklahoma 40 8231 359
## 5719 2020-06-14 Oregon 41 5644 176
## 5720 2020-06-14 Pennsylvania 42 83301 6275
## 5721 2020-06-14 Puerto Rico 72 5811 147
## 5722 2020-06-14 Rhode Island 44 15947 833
## 5723 2020-06-14 South Carolina 45 18796 600
## 5724 2020-06-14 South Dakota 46 5898 75
## 5725 2020-06-14 Tennessee 47 30174 467
## 5726 2020-06-14 Texas 48 89542 1995
## 5727 2020-06-14 Utah 49 14313 139
## 5728 2020-06-14 Vermont 50 1127 55
## 5729 2020-06-14 Virgin Islands 78 73 6
## 5730 2020-06-14 Virginia 51 54506 1546
## 5731 2020-06-14 Washington 53 27135 1220
## 5732 2020-06-14 West Virginia 54 2290 88
## 5733 2020-06-14 Wisconsin 55 25307 702
## 5734 2020-06-14 Wyoming 56 1060 18
## 5735 2020-06-15 Alabama 1 26272 774
## 5736 2020-06-15 Alaska 2 738 10
## 5737 2020-06-15 Arizona 4 37005 1204
## 5738 2020-06-15 Arkansas 5 12917 182
## 5739 2020-06-15 California 6 155662 5120
## 5740 2020-06-15 Colorado 8 29284 1605
## 5741 2020-06-15 Connecticut 9 45235 4204
## 5742 2020-06-15 Delaware 10 10340 423
## 5743 2020-06-15 District of Columbia 11 9799 515
## 5744 2020-06-15 Florida 12 77318 2937
## 5745 2020-06-15 Georgia 13 55505 2457
## 5746 2020-06-15 Guam 66 1155 6
## 5747 2020-06-15 Hawaii 15 724 17
## 5748 2020-06-15 Idaho 16 3472 89
## 5749 2020-06-15 Illinois 17 134247 6543
## 5750 2020-06-15 Indiana 18 41422 2433
## 5751 2020-06-15 Iowa 19 24110 661
## 5752 2020-06-15 Kansas 20 11516 246
## 5753 2020-06-15 Kentucky 21 12863 524
## 5754 2020-06-15 Louisiana 22 47284 3018
## 5755 2020-06-15 Maine 23 2810 101
## 5756 2020-06-15 Maryland 24 62653 2947
## 5757 2020-06-15 Massachusetts 25 105690 7646
## 5758 2020-06-15 Michigan 26 66302 6025
## 5759 2020-06-15 Minnesota 27 30724 1335
## 5760 2020-06-15 Mississippi 28 19799 895
## 5761 2020-06-15 Missouri 29 16712 895
## 5762 2020-06-15 Montana 30 609 19
## 5763 2020-06-15 Nebraska 31 16860 226
## 5764 2020-06-15 Nevada 32 11316 466
## 5765 2020-06-15 New Hampshire 33 5345 320
## 5766 2020-06-15 New Jersey 34 167103 12676
## 5767 2020-06-15 New Mexico 35 9845 440
## 5768 2020-06-15 New York 36 388719 30645
## 5769 2020-06-15 North Carolina 37 45257 1156
## 5770 2020-06-15 North Dakota 38 3104 77
## 5771 2020-06-15 Northern Mariana Islands 69 30 2
## 5772 2020-06-15 Ohio 39 41576 2573
## 5773 2020-06-15 Oklahoma 40 8417 359
## 5774 2020-06-15 Oregon 41 5831 180
## 5775 2020-06-15 Pennsylvania 42 83687 6307
## 5776 2020-06-15 Puerto Rico 72 5890 147
## 5777 2020-06-15 Rhode Island 44 16093 851
## 5778 2020-06-15 South Carolina 45 19381 602
## 5779 2020-06-15 South Dakota 46 5928 75
## 5780 2020-06-15 Tennessee 47 30945 477
## 5781 2020-06-15 Texas 48 91726 2018
## 5782 2020-06-15 Utah 49 14757 143
## 5783 2020-06-15 Vermont 50 1130 55
## 5784 2020-06-15 Virgin Islands 78 73 6
## 5785 2020-06-15 Virginia 51 54886 1552
## 5786 2020-06-15 Washington 53 27577 1223
## 5787 2020-06-15 West Virginia 54 2322 88
## 5788 2020-06-15 Wisconsin 55 25530 703
## 5789 2020-06-15 Wyoming 56 1079 18
## 5790 2020-06-16 Alabama 1 26912 785
## 5791 2020-06-16 Alaska 2 751 10
## 5792 2020-06-16 Arizona 4 39298 1228
## 5793 2020-06-16 Arkansas 5 13191 188
## 5794 2020-06-16 California 6 159131 5202
## 5795 2020-06-16 Colorado 8 29427 1617
## 5796 2020-06-16 Connecticut 9 45349 4210
## 5797 2020-06-16 Delaware 10 10403 424
## 5798 2020-06-16 District of Columbia 11 9818 520
## 5799 2020-06-16 Florida 12 80101 2992
## 5800 2020-06-16 Georgia 13 56302 2492
## 5801 2020-06-16 Guam 66 1155 6
## 5802 2020-06-16 Hawaii 15 728 17
## 5803 2020-06-16 Idaho 16 3543 89
## 5804 2020-06-16 Illinois 17 134866 6608
## 5805 2020-06-16 Indiana 18 41780 2447
## 5806 2020-06-16 Iowa 19 24263 670
## 5807 2020-06-16 Kansas 20 11569 246
## 5808 2020-06-16 Kentucky 21 12899 530
## 5809 2020-06-16 Louisiana 22 47818 3042
## 5810 2020-06-16 Maine 23 2819 101
## 5811 2020-06-16 Maryland 24 63004 2982
## 5812 2020-06-16 Massachusetts 25 105885 7664
## 5813 2020-06-16 Michigan 26 66466 6039
## 5814 2020-06-16 Minnesota 27 30913 1344
## 5815 2020-06-16 Mississippi 28 20152 915
## 5816 2020-06-16 Missouri 29 16930 903
## 5817 2020-06-16 Montana 30 614 19
## 5818 2020-06-16 Nebraska 31 17031 236
## 5819 2020-06-16 Nevada 32 11673 467
## 5820 2020-06-16 New Hampshire 33 5364 326
## 5821 2020-06-16 New Jersey 34 167426 12727
## 5822 2020-06-16 New Mexico 35 9933 447
## 5823 2020-06-16 New York 36 389349 30683
## 5824 2020-06-16 North Carolina 37 46105 1185
## 5825 2020-06-16 North Dakota 38 3127 77
## 5826 2020-06-16 Northern Mariana Islands 69 30 2
## 5827 2020-06-16 Ohio 39 42010 2597
## 5828 2020-06-16 Oklahoma 40 8645 363
## 5829 2020-06-16 Oregon 41 6111 182
## 5830 2020-06-16 Pennsylvania 42 84077 6337
## 5831 2020-06-16 Puerto Rico 72 5951 147
## 5832 2020-06-16 Rhode Island 44 16164 865
## 5833 2020-06-16 South Carolina 45 19995 607
## 5834 2020-06-16 South Dakota 46 5966 77
## 5835 2020-06-16 Tennessee 47 31623 487
## 5836 2020-06-16 Texas 48 95973 2057
## 5837 2020-06-16 Utah 49 15077 145
## 5838 2020-06-16 Vermont 50 1130 55
## 5839 2020-06-16 Virgin Islands 78 73 6
## 5840 2020-06-16 Virginia 51 55331 1570
## 5841 2020-06-16 Washington 53 27949 1234
## 5842 2020-06-16 West Virginia 54 2341 88
## 5843 2020-06-16 Wisconsin 55 25829 710
## 5844 2020-06-16 Wyoming 56 1089 18
## 5845 2020-06-17 Alabama 1 27312 790
## 5846 2020-06-17 Alaska 2 776 10
## 5847 2020-06-17 Arizona 4 41159 1252
## 5848 2020-06-17 Arkansas 5 13606 197
## 5849 2020-06-17 California 6 163381 5283
## 5850 2020-06-17 Colorado 8 29658 1631
## 5851 2020-06-17 Connecticut 9 45429 4219
## 5852 2020-06-17 Delaware 10 10444 426
## 5853 2020-06-17 District of Columbia 11 9847 523
## 5854 2020-06-17 Florida 12 82711 3017
## 5855 2020-06-17 Georgia 13 57217 2536
## 5856 2020-06-17 Guam 66 1157 6
## 5857 2020-06-17 Hawaii 15 732 17
## 5858 2020-06-17 Idaho 16 3634 89
## 5859 2020-06-17 Illinois 17 135416 6687
## 5860 2020-06-17 Indiana 18 42036 2475
## 5861 2020-06-17 Iowa 19 24616 677
## 5862 2020-06-17 Kansas 20 11801 248
## 5863 2020-06-17 Kentucky 21 13190 536
## 5864 2020-06-17 Louisiana 22 48746 3062
## 5865 2020-06-17 Maine 23 2836 102
## 5866 2020-06-17 Maryland 24 63565 2996
## 5867 2020-06-17 Massachusetts 25 106151 7733
## 5868 2020-06-17 Michigan 26 66694 6041
## 5869 2020-06-17 Minnesota 27 31328 1357
## 5870 2020-06-17 Mississippi 28 20641 938
## 5871 2020-06-17 Missouri 29 17151 924
## 5872 2020-06-17 Montana 30 630 20
## 5873 2020-06-17 Nebraska 31 17226 239
## 5874 2020-06-17 Nevada 32 11852 473
## 5875 2020-06-17 New Hampshire 33 5436 330
## 5876 2020-06-17 New Jersey 34 167703 12769
## 5877 2020-06-17 New Mexico 35 10065 452
## 5878 2020-06-17 New York 36 389910 30722
## 5879 2020-06-17 North Carolina 37 47142 1198
## 5880 2020-06-17 North Dakota 38 3170 78
## 5881 2020-06-17 Northern Mariana Islands 69 30 2
## 5882 2020-06-17 Ohio 39 42422 2611
## 5883 2020-06-17 Oklahoma 40 8903 364
## 5884 2020-06-17 Oregon 41 6235 183
## 5885 2020-06-17 Pennsylvania 42 84387 6376
## 5886 2020-06-17 Puerto Rico 72 6003 147
## 5887 2020-06-17 Rhode Island 44 16213 876
## 5888 2020-06-17 South Carolina 45 20556 617
## 5889 2020-06-17 South Dakota 46 6050 78
## 5890 2020-06-17 Tennessee 47 32112 493
## 5891 2020-06-17 Texas 48 99466 2099
## 5892 2020-06-17 Utah 49 15464 149
## 5893 2020-06-17 Vermont 50 1130 55
## 5894 2020-06-17 Virgin Islands 78 73 6
## 5895 2020-06-17 Virginia 51 55775 1583
## 5896 2020-06-17 Washington 53 28270 1229
## 5897 2020-06-17 West Virginia 54 2376 88
## 5898 2020-06-17 Wisconsin 55 26167 719
## 5899 2020-06-17 Wyoming 56 1114 18
## 5900 2020-06-18 Alabama 1 28206 810
## 5901 2020-06-18 Alaska 2 795 10
## 5902 2020-06-18 Arizona 4 43731 1287
## 5903 2020-06-18 Arkansas 5 13928 208
## 5904 2020-06-18 California 6 167135 5359
## 5905 2020-06-18 Colorado 8 29886 1638
## 5906 2020-06-18 Connecticut 9 45440 4226
## 5907 2020-06-18 Delaware 10 10499 431
## 5908 2020-06-18 District of Columbia 11 9903 527
## 5909 2020-06-18 Florida 12 85918 3060
## 5910 2020-06-18 Georgia 13 58040 2565
## 5911 2020-06-18 Guam 66 1162 6
## 5912 2020-06-18 Hawaii 15 750 17
## 5913 2020-06-18 Idaho 16 3744 90
## 5914 2020-06-18 Illinois 17 136081 6737
## 5915 2020-06-18 Indiana 18 42480 2491
## 5916 2020-06-18 Iowa 19 24959 680
## 5917 2020-06-18 Kansas 20 11886 252
## 5918 2020-06-18 Kentucky 21 13391 540
## 5919 2020-06-18 Louisiana 22 49506 3069
## 5920 2020-06-18 Maine 23 2878 102
## 5921 2020-06-18 Maryland 24 63839 3016
## 5922 2020-06-18 Massachusetts 25 106422 7769
## 5923 2020-06-18 Michigan 26 66980 6064
## 5924 2020-06-18 Minnesota 27 31707 1376
## 5925 2020-06-18 Mississippi 28 21022 943
## 5926 2020-06-18 Missouri 29 17488 963
## 5927 2020-06-18 Montana 30 655 20
## 5928 2020-06-18 Nebraska 31 17415 244
## 5929 2020-06-18 Nevada 32 12164 475
## 5930 2020-06-18 New Hampshire 33 5450 331
## 5931 2020-06-18 New Jersey 34 168107 12800
## 5932 2020-06-18 New Mexico 35 10153 456
## 5933 2020-06-18 New York 36 390536 30767
## 5934 2020-06-18 North Carolina 37 48426 1209
## 5935 2020-06-18 North Dakota 38 3199 81
## 5936 2020-06-18 Northern Mariana Islands 69 30 2
## 5937 2020-06-18 Ohio 39 43122 2633
## 5938 2020-06-18 Oklahoma 40 9354 366
## 5939 2020-06-18 Oregon 41 6390 187
## 5940 2020-06-18 Pennsylvania 42 84780 6417
## 5941 2020-06-18 Puerto Rico 72 6111 147
## 5942 2020-06-18 Rhode Island 44 16269 885
## 5943 2020-06-18 South Carolina 45 21548 621
## 5944 2020-06-18 South Dakota 46 6109 78
## 5945 2020-06-18 Tennessee 47 32604 504
## 5946 2020-06-18 Texas 48 102677 2137
## 5947 2020-06-18 Utah 49 16015 152
## 5948 2020-06-18 Vermont 50 1135 56
## 5949 2020-06-18 Virgin Islands 78 74 6
## 5950 2020-06-18 Virginia 51 56238 1586
## 5951 2020-06-18 Washington 53 28663 1246
## 5952 2020-06-18 West Virginia 54 2418 88
## 5953 2020-06-18 Wisconsin 55 26611 725
## 5954 2020-06-18 Wyoming 56 1144 18
## 5955 2020-06-19 Alabama 1 29002 822
## 5956 2020-06-19 Alaska 2 821 10
## 5957 2020-06-19 Arizona 4 46914 1322
## 5958 2020-06-19 Arkansas 5 14631 214
## 5959 2020-06-19 California 6 170843 5425
## 5960 2020-06-19 Colorado 8 30172 1643
## 5961 2020-06-19 Connecticut 9 45557 4238
## 5962 2020-06-19 Delaware 10 10611 433
## 5963 2020-06-19 District of Columbia 11 9952 530
## 5964 2020-06-19 Florida 12 89740 3103
## 5965 2020-06-19 Georgia 13 59117 2596
## 5966 2020-06-19 Guam 66 1169 6
## 5967 2020-06-19 Hawaii 15 777 17
## 5968 2020-06-19 Idaho 16 3871 90
## 5969 2020-06-19 Illinois 17 136917 6801
## 5970 2020-06-19 Indiana 18 42801 2516
## 5971 2020-06-19 Iowa 19 25424 681
## 5972 2020-06-19 Kansas 20 12168 254
## 5973 2020-06-19 Kentucky 21 13629 542
## 5974 2020-06-19 Louisiana 22 48627 3084
## 5975 2020-06-19 Maine 23 2913 102
## 5976 2020-06-19 Maryland 24 64150 3030
## 5977 2020-06-19 Massachusetts 25 106650 7799
## 5978 2020-06-19 Michigan 26 67300 6071
## 5979 2020-06-19 Minnesota 27 32063 1393
## 5980 2020-06-19 Mississippi 28 21022 943
## 5981 2020-06-19 Missouri 29 17780 973
## 5982 2020-06-19 Montana 30 666 20
## 5983 2020-06-19 Nebraska 31 17591 249
## 5984 2020-06-19 Nevada 32 12525 479
## 5985 2020-06-19 New Hampshire 33 5486 337
## 5986 2020-06-19 New Jersey 34 168496 12835
## 5987 2020-06-19 New Mexico 35 10260 464
## 5988 2020-06-19 New York 36 391330 30816
## 5989 2020-06-19 North Carolina 37 50014 1223
## 5990 2020-06-19 North Dakota 38 3232 82
## 5991 2020-06-19 Northern Mariana Islands 69 30 2
## 5992 2020-06-19 Ohio 39 43731 2667
## 5993 2020-06-19 Oklahoma 40 9706 367
## 5994 2020-06-19 Oregon 41 6592 188
## 5995 2020-06-19 Pennsylvania 42 85288 6446
## 5996 2020-06-19 Puerto Rico 72 6195 147
## 5997 2020-06-19 Rhode Island 44 16337 894
## 5998 2020-06-19 South Carolina 45 22631 639
## 5999 2020-06-19 South Dakota 46 6158 81
## 6000 2020-06-19 Tennessee 47 33603 508
## 6001 2020-06-19 Texas 48 107322 2168
## 6002 2020-06-19 Utah 49 16585 155
## 6003 2020-06-19 Vermont 50 1144 56
## 6004 2020-06-19 Virgin Islands 78 74 6
## 6005 2020-06-19 Virginia 51 56793 1602
## 6006 2020-06-19 Washington 53 29045 1258
## 6007 2020-06-19 West Virginia 54 2468 88
## 6008 2020-06-19 Wisconsin 55 26913 736
## 6009 2020-06-19 Wyoming 56 1173 20
## 6010 2020-06-20 Alabama 1 29549 838
## 6011 2020-06-20 Alaska 2 845 10
## 6012 2020-06-20 Arizona 4 50198 1347
## 6013 2020-06-20 Arkansas 5 15142 224
## 6014 2020-06-20 California 6 174854 5495
## 6015 2020-06-20 Colorado 8 30334 1647
## 6016 2020-06-20 Connecticut 9 45715 4251
## 6017 2020-06-20 Delaware 10 10681 434
## 6018 2020-06-20 District of Columbia 11 9984 531
## 6019 2020-06-20 Florida 12 93789 3143
## 6020 2020-06-20 Georgia 13 60669 2602
## 6021 2020-06-20 Guam 66 1191 6
## 6022 2020-06-20 Hawaii 15 791 17
## 6023 2020-06-20 Idaho 16 4006 90
## 6024 2020-06-20 Illinois 17 137535 6846
## 6025 2020-06-20 Indiana 18 43135 2536
## 6026 2020-06-20 Iowa 19 25552 685
## 6027 2020-06-20 Kansas 20 12218 257
## 6028 2020-06-20 Kentucky 21 13800 542
## 6029 2020-06-20 Louisiana 22 49497 3104
## 6030 2020-06-20 Maine 23 2938 102
## 6031 2020-06-20 Maryland 24 64565 3052
## 6032 2020-06-20 Massachusetts 25 106936 7827
## 6033 2020-06-20 Michigan 26 67721 6091
## 6034 2020-06-20 Minnesota 27 32499 1404
## 6035 2020-06-20 Mississippi 28 21022 943
## 6036 2020-06-20 Missouri 29 18155 975
## 6037 2020-06-20 Montana 30 698 20
## 6038 2020-06-20 Nebraska 31 17707 249
## 6039 2020-06-20 Nevada 32 12977 486
## 6040 2020-06-20 New Hampshire 33 5518 339
## 6041 2020-06-20 New Jersey 34 168834 12857
## 6042 2020-06-20 New Mexico 35 10430 466
## 6043 2020-06-20 New York 36 392037 30839
## 6044 2020-06-20 North Carolina 37 51640 1239
## 6045 2020-06-20 North Dakota 38 3257 82
## 6046 2020-06-20 Northern Mariana Islands 69 30 2
## 6047 2020-06-20 Ohio 39 44262 2697
## 6048 2020-06-20 Oklahoma 40 10037 368
## 6049 2020-06-20 Oregon 41 6682 188
## 6050 2020-06-20 Pennsylvania 42 85678 6467
## 6051 2020-06-20 Puerto Rico 72 6463 147
## 6052 2020-06-20 Rhode Island 44 16337 894
## 6053 2020-06-20 South Carolina 45 23786 644
## 6054 2020-06-20 South Dakota 46 6225 81
## 6055 2020-06-20 Tennessee 47 34223 516
## 6056 2020-06-20 Texas 48 111594 2186
## 6057 2020-06-20 Utah 49 17173 155
## 6058 2020-06-20 Vermont 50 1147 56
## 6059 2020-06-20 Virgin Islands 78 76 6
## 6060 2020-06-20 Virginia 51 57443 1607
## 6061 2020-06-20 Washington 53 29466 1268
## 6062 2020-06-20 West Virginia 54 2500 88
## 6063 2020-06-20 Wisconsin 55 27314 751
## 6064 2020-06-20 Wyoming 56 1179 20
## 6065 2020-06-21 Alabama 1 30021 839
## 6066 2020-06-21 Alaska 2 859 10
## 6067 2020-06-21 Arizona 4 52666 1350
## 6068 2020-06-21 Arkansas 5 15561 225
## 6069 2020-06-21 California 6 178807 5517
## 6070 2020-06-21 Colorado 8 30524 1647
## 6071 2020-06-21 Connecticut 9 45755 4260
## 6072 2020-06-21 Delaware 10 10775 435
## 6073 2020-06-21 District of Columbia 11 10020 533
## 6074 2020-06-21 Florida 12 97283 3160
## 6075 2020-06-21 Georgia 13 61493 2603
## 6076 2020-06-21 Guam 66 1191 6
## 6077 2020-06-21 Hawaii 15 802 17
## 6078 2020-06-21 Idaho 16 4025 90
## 6079 2020-06-21 Illinois 17 138154 6865
## 6080 2020-06-21 Indiana 18 43496 2540
## 6081 2020-06-21 Iowa 19 26020 686
## 6082 2020-06-21 Kansas 20 12258 258
## 6083 2020-06-21 Kentucky 21 13919 544
## 6084 2020-06-21 Louisiana 22 49890 3105
## 6085 2020-06-21 Maine 23 2957 102
## 6086 2020-06-21 Maryland 24 64903 3066
## 6087 2020-06-21 Massachusetts 25 107061 7857
## 6088 2020-06-21 Michigan 26 67873 6094
## 6089 2020-06-21 Minnesota 27 32952 1412
## 6090 2020-06-21 Mississippi 28 21022 943
## 6091 2020-06-21 Missouri 29 18552 975
## 6092 2020-06-21 Montana 30 717 20
## 6093 2020-06-21 Nebraska 31 17810 252
## 6094 2020-06-21 Nevada 32 13236 487
## 6095 2020-06-21 New Hampshire 33 5544 339
## 6096 2020-06-21 New Jersey 34 169142 12870
## 6097 2020-06-21 New Mexico 35 10565 469
## 6098 2020-06-21 New York 36 392702 30884
## 6099 2020-06-21 North Carolina 37 52854 1245
## 6100 2020-06-21 North Dakota 38 3294 83
## 6101 2020-06-21 Northern Mariana Islands 69 30 2
## 6102 2020-06-21 Ohio 39 44808 2700
## 6103 2020-06-21 Oklahoma 40 10515 369
## 6104 2020-06-21 Oregon 41 6945 190
## 6105 2020-06-21 Pennsylvania 42 86024 6472
## 6106 2020-06-21 Puerto Rico 72 6525 149
## 6107 2020-06-21 Rhode Island 44 16337 894
## 6108 2020-06-21 South Carolina 45 24693 653
## 6109 2020-06-21 South Dakota 46 6297 81
## 6110 2020-06-21 Tennessee 47 34719 519
## 6111 2020-06-21 Texas 48 114886 2195
## 6112 2020-06-21 Utah 49 17567 158
## 6113 2020-06-21 Vermont 50 1159 56
## 6114 2020-06-21 Virgin Islands 78 76 6
## 6115 2020-06-21 Virginia 51 57994 1611
## 6116 2020-06-21 Washington 53 29797 1271
## 6117 2020-06-21 West Virginia 54 2543 89
## 6118 2020-06-21 Wisconsin 55 27598 751
## 6119 2020-06-21 Wyoming 56 1197 20
## 6120 2020-06-22 Alabama 1 30454 841
## 6121 2020-06-22 Alaska 2 869 10
## 6122 2020-06-22 Arizona 4 54767 1354
## 6123 2020-06-22 Arkansas 5 16083 227
## 6124 2020-06-22 California 6 184620 5561
## 6125 2020-06-22 Colorado 8 30689 1651
## 6126 2020-06-22 Connecticut 9 45782 4263
## 6127 2020-06-22 Delaware 10 10820 435
## 6128 2020-06-22 District of Columbia 11 10058 535
## 6129 2020-06-22 Florida 12 100209 3172
## 6130 2020-06-22 Georgia 13 62705 2607
## 6131 2020-06-22 Guam 66 1191 6
## 6132 2020-06-22 Hawaii 15 804 17
## 6133 2020-06-22 Idaho 16 4267 90
## 6134 2020-06-22 Illinois 17 138615 6889
## 6135 2020-06-22 Indiana 18 43709 2553
## 6136 2020-06-22 Iowa 19 26217 687
## 6137 2020-06-22 Kansas 20 12576 260
## 6138 2020-06-22 Kentucky 21 14073 549
## 6139 2020-06-22 Louisiana 22 50352 3117
## 6140 2020-06-22 Maine 23 2971 102
## 6141 2020-06-22 Maryland 24 65202 3074
## 6142 2020-06-22 Massachusetts 25 107210 7873
## 6143 2020-06-22 Michigan 26 68144 6101
## 6144 2020-06-22 Minnesota 27 33259 1416
## 6145 2020-06-22 Mississippi 28 22287 978
## 6146 2020-06-22 Missouri 29 18733 980
## 6147 2020-06-22 Montana 30 734 21
## 6148 2020-06-22 Nebraska 31 17957 255
## 6149 2020-06-22 Nevada 32 13575 490
## 6150 2020-06-22 New Hampshire 33 5558 339
## 6151 2020-06-22 New Jersey 34 169415 12895
## 6152 2020-06-22 New Mexico 35 10694 469
## 6153 2020-06-22 New York 36 393257 30934
## 6154 2020-06-22 North Carolina 37 53840 1250
## 6155 2020-06-22 North Dakota 38 3319 83
## 6156 2020-06-22 Northern Mariana Islands 69 30 2
## 6157 2020-06-22 Ohio 39 45537 2704
## 6158 2020-06-22 Oklahoma 40 10733 369
## 6159 2020-06-22 Oregon 41 7115 192
## 6160 2020-06-22 Pennsylvania 42 86666 6475
## 6161 2020-06-22 Puerto Rico 72 6564 149
## 6162 2020-06-22 Rhode Island 44 16459 903
## 6163 2020-06-22 South Carolina 45 25701 659
## 6164 2020-06-22 South Dakota 46 6326 81
## 6165 2020-06-22 Tennessee 47 35255 525
## 6166 2020-06-22 Texas 48 119646 2213
## 6167 2020-06-22 Utah 49 18035 158
## 6168 2020-06-22 Vermont 50 1163 56
## 6169 2020-06-22 Virgin Islands 78 76 6
## 6170 2020-06-22 Virginia 51 58465 1620
## 6171 2020-06-22 Washington 53 30443 1277
## 6172 2020-06-22 West Virginia 54 2571 90
## 6173 2020-06-22 Wisconsin 55 27849 751
## 6174 2020-06-22 Wyoming 56 1230 20
## 6175 2020-06-23 Alabama 1 31097 864
## 6176 2020-06-23 Alaska 2 905 10
## 6177 2020-06-23 Arizona 4 58397 1398
## 6178 2020-06-23 Arkansas 5 16678 237
## 6179 2020-06-23 California 6 191039 5637
## 6180 2020-06-23 Colorado 8 30877 1665
## 6181 2020-06-23 Connecticut 9 45899 4277
## 6182 2020-06-23 Delaware 10 10847 504
## 6183 2020-06-23 District of Columbia 11 10094 537
## 6184 2020-06-23 Florida 12 103495 3237
## 6185 2020-06-23 Georgia 13 64577 2646
## 6186 2020-06-23 Guam 66 1194 6
## 6187 2020-06-23 Hawaii 15 807 17
## 6188 2020-06-23 Idaho 16 4412 90
## 6189 2020-06-23 Illinois 17 139282 6925
## 6190 2020-06-23 Indiana 18 43967 2569
## 6191 2020-06-23 Iowa 19 26470 690
## 6192 2020-06-23 Kansas 20 12659 261
## 6193 2020-06-23 Kentucky 21 14323 559
## 6194 2020-06-23 Louisiana 22 51708 3134
## 6195 2020-06-23 Maine 23 2994 102
## 6196 2020-06-23 Maryland 24 65602 3092
## 6197 2020-06-23 Massachusetts 25 107439 7889
## 6198 2020-06-23 Michigan 26 68373 6113
## 6199 2020-06-23 Minnesota 27 33501 1425
## 6200 2020-06-23 Mississippi 28 22898 989
## 6201 2020-06-23 Missouri 29 19148 993
## 6202 2020-06-23 Montana 30 743 21
## 6203 2020-06-23 Nebraska 31 18091 262
## 6204 2020-06-23 Nevada 32 14058 492
## 6205 2020-06-23 New Hampshire 33 5571 343
## 6206 2020-06-23 New Jersey 34 169734 12949
## 6207 2020-06-23 New Mexico 35 10838 476
## 6208 2020-06-23 New York 36 393855 30970
## 6209 2020-06-23 North Carolina 37 54826 1276
## 6210 2020-06-23 North Dakota 38 3326 84
## 6211 2020-06-23 Northern Mariana Islands 69 30 2
## 6212 2020-06-23 Ohio 39 46127 2735
## 6213 2020-06-23 Oklahoma 40 11028 371
## 6214 2020-06-23 Oregon 41 7317 192
## 6215 2020-06-23 Pennsylvania 42 87283 6511
## 6216 2020-06-23 Puerto Rico 72 6685 149
## 6217 2020-06-23 Rhode Island 44 16533 906
## 6218 2020-06-23 South Carolina 45 26613 673
## 6219 2020-06-23 South Dakota 46 6353 83
## 6220 2020-06-23 Tennessee 47 36018 535
## 6221 2020-06-23 Texas 48 124726 2246
## 6222 2020-06-23 Utah 49 18454 163
## 6223 2020-06-23 Vermont 50 1164 56
## 6224 2020-06-23 Virgin Islands 78 78 6
## 6225 2020-06-23 Virginia 51 58994 1645
## 6226 2020-06-23 Washington 53 30778 1285
## 6227 2020-06-23 West Virginia 54 2593 92
## 6228 2020-06-23 Wisconsin 55 28187 758
## 6229 2020-06-23 Wyoming 56 1254 20
## 6230 2020-06-24 Alabama 1 32064 891
## 6231 2020-06-24 Alaska 2 926 10
## 6232 2020-06-24 Arizona 4 60207 1467
## 6233 2020-06-24 Arkansas 5 17375 240
## 6234 2020-06-24 California 6 195889 5728
## 6235 2020-06-24 Colorado 8 31139 1667
## 6236 2020-06-24 Connecticut 9 45913 4287
## 6237 2020-06-24 Delaware 10 10889 505
## 6238 2020-06-24 District of Columbia 11 10128 541
## 6239 2020-06-24 Florida 12 109006 3280
## 6240 2020-06-24 Georgia 13 66290 2658
## 6241 2020-06-24 Guam 66 1200 6
## 6242 2020-06-24 Hawaii 15 821 17
## 6243 2020-06-24 Idaho 16 4650 91
## 6244 2020-06-24 Illinois 17 140025 6986
## 6245 2020-06-24 Indiana 18 44260 2578
## 6246 2020-06-24 Iowa 19 26897 694
## 6247 2020-06-24 Kansas 20 13110 262
## 6248 2020-06-24 Kentucky 21 14522 561
## 6249 2020-06-24 Louisiana 22 52590 3152
## 6250 2020-06-24 Maine 23 3017 103
## 6251 2020-06-24 Maryland 24 65934 3108
## 6252 2020-06-24 Massachusetts 25 107611 7937
## 6253 2020-06-24 Michigan 26 68711 6118
## 6254 2020-06-24 Minnesota 27 33798 1432
## 6255 2020-06-24 Mississippi 28 23424 1011
## 6256 2020-06-24 Missouri 29 19478 1001
## 6257 2020-06-24 Montana 30 766 21
## 6258 2020-06-24 Nebraska 31 18220 263
## 6259 2020-06-24 Nevada 32 14460 494
## 6260 2020-06-24 New Hampshire 33 5598 347
## 6261 2020-06-24 New Jersey 34 169892 12995
## 6262 2020-06-24 New Mexico 35 10990 480
## 6263 2020-06-24 New York 36 394430 31001
## 6264 2020-06-24 North Carolina 37 56263 1295
## 6265 2020-06-24 North Dakota 38 3370 86
## 6266 2020-06-24 Northern Mariana Islands 69 30 2
## 6267 2020-06-24 Ohio 39 46759 2755
## 6268 2020-06-24 Oklahoma 40 11509 372
## 6269 2020-06-24 Oregon 41 7462 195
## 6270 2020-06-24 Pennsylvania 42 87775 6568
## 6271 2020-06-24 Puerto Rico 72 6820 149
## 6272 2020-06-24 Rhode Island 44 16606 912
## 6273 2020-06-24 South Carolina 45 27897 683
## 6274 2020-06-24 South Dakota 46 6419 84
## 6275 2020-06-24 Tennessee 47 36822 548
## 6276 2020-06-24 Texas 48 131310 2292
## 6277 2020-06-24 Utah 49 18915 163
## 6278 2020-06-24 Vermont 50 1184 56
## 6279 2020-06-24 Virgin Islands 78 80 6
## 6280 2020-06-24 Virginia 51 59514 1661
## 6281 2020-06-24 Washington 53 31400 1294
## 6282 2020-06-24 West Virginia 54 2629 92
## 6283 2020-06-24 Wisconsin 55 28652 769
## 6284 2020-06-24 Wyoming 56 1282 20
## 6285 2020-06-25 Alabama 1 33206 896
## 6286 2020-06-25 Alaska 2 971 10
## 6287 2020-06-25 Arizona 4 63297 1495
## 6288 2020-06-25 Arkansas 5 18062 240
## 6289 2020-06-25 California 6 201413 5810
## 6290 2020-06-25 Colorado 8 31463 1669
## 6291 2020-06-25 Connecticut 9 45994 4298
## 6292 2020-06-25 Delaware 10 10980 507
## 6293 2020-06-25 District of Columbia 11 10159 543
## 6294 2020-06-25 Florida 12 114010 3326
## 6295 2020-06-25 Georgia 13 67796 2704
## 6296 2020-06-25 Guam 66 1214 6
## 6297 2020-06-25 Hawaii 15 836 17
## 6298 2020-06-25 Idaho 16 4869 91
## 6299 2020-06-25 Illinois 17 140935 7024
## 6300 2020-06-25 Indiana 18 44779 2586
## 6301 2020-06-25 Iowa 19 27384 702
## 6302 2020-06-25 Kansas 20 13207 263
## 6303 2020-06-25 Kentucky 21 14793 569
## 6304 2020-06-25 Louisiana 22 53528 3164
## 6305 2020-06-25 Maine 23 3070 103
## 6306 2020-06-25 Maryland 24 66397 3129
## 6307 2020-06-25 Massachusetts 25 107837 7962
## 6308 2020-06-25 Michigan 26 69159 6137
## 6309 2020-06-25 Minnesota 27 34158 1441
## 6310 2020-06-25 Mississippi 28 24516 1016
## 6311 2020-06-25 Missouri 29 20076 1006
## 6312 2020-06-25 Montana 30 803 21
## 6313 2020-06-25 Nebraska 31 18346 266
## 6314 2020-06-25 Nevada 32 14911 495
## 6315 2020-06-25 New Hampshire 33 5638 357
## 6316 2020-06-25 New Jersey 34 172050 14872
## 6317 2020-06-25 New Mexico 35 11192 485
## 6318 2020-06-25 New York 36 395168 31029
## 6319 2020-06-25 North Carolina 37 57540 1305
## 6320 2020-06-25 North Dakota 38 3402 87
## 6321 2020-06-25 Northern Mariana Islands 69 30 2
## 6322 2020-06-25 Ohio 39 47651 2772
## 6323 2020-06-25 Oklahoma 40 11947 375
## 6324 2020-06-25 Oregon 41 7605 199
## 6325 2020-06-25 Pennsylvania 42 88230 6602
## 6326 2020-06-25 Puerto Rico 72 6877 151
## 6327 2020-06-25 Rhode Island 44 16640 920
## 6328 2020-06-25 South Carolina 45 29022 693
## 6329 2020-06-25 South Dakota 46 6479 87
## 6330 2020-06-25 Tennessee 47 37695 558
## 6331 2020-06-25 Texas 48 136783 2321
## 6332 2020-06-25 Utah 49 19544 164
## 6333 2020-06-25 Vermont 50 1191 56
## 6334 2020-06-25 Virgin Islands 78 81 6
## 6335 2020-06-25 Virginia 51 59946 1675
## 6336 2020-06-25 Washington 53 31998 1301
## 6337 2020-06-25 West Virginia 54 2693 92
## 6338 2020-06-25 Wisconsin 55 29204 775
## 6339 2020-06-25 Wyoming 56 1326 20
## 6340 2020-06-26 Alabama 1 34183 907
## 6341 2020-06-26 Alaska 2 1001 12
## 6342 2020-06-26 Arizona 4 66676 1537
## 6343 2020-06-26 Arkansas 5 18740 249
## 6344 2020-06-26 California 6 207027 5872
## 6345 2020-06-26 Colorado 8 31780 1673
## 6346 2020-06-26 Connecticut 9 46059 4307
## 6347 2020-06-26 Delaware 10 11017 507
## 6348 2020-06-26 District of Columbia 11 10185 546
## 6349 2020-06-26 Florida 12 122952 3365
## 6350 2020-06-26 Georgia 13 69542 2727
## 6351 2020-06-26 Guam 66 1217 6
## 6352 2020-06-26 Hawaii 15 850 17
## 6353 2020-06-26 Idaho 16 5149 91
## 6354 2020-06-26 Illinois 17 141812 7059
## 6355 2020-06-26 Indiana 18 45269 2595
## 6356 2020-06-26 Iowa 19 27828 704
## 6357 2020-06-26 Kansas 20 13729 266
## 6358 2020-06-26 Kentucky 21 15033 575
## 6359 2020-06-26 Louisiana 22 54882 3190
## 6360 2020-06-26 Maine 23 3102 103
## 6361 2020-06-26 Maryland 24 66704 3142
## 6362 2020-06-26 Massachusetts 25 108070 8012
## 6363 2020-06-26 Michigan 26 69473 6138
## 6364 2020-06-26 Minnesota 27 34651 1446
## 6365 2020-06-26 Mississippi 28 25066 1022
## 6366 2020-06-26 Missouri 29 20567 1019
## 6367 2020-06-26 Montana 30 829 22
## 6368 2020-06-26 Nebraska 31 18524 270
## 6369 2020-06-26 Nevada 32 15359 498
## 6370 2020-06-26 New Hampshire 33 5671 365
## 6371 2020-06-26 New Jersey 34 172438 14914
## 6372 2020-06-26 New Mexico 35 11408 489
## 6373 2020-06-26 New York 36 395972 31075
## 6374 2020-06-26 North Carolina 37 59257 1319
## 6375 2020-06-26 North Dakota 38 3430 87
## 6376 2020-06-26 Northern Mariana Islands 69 30 2
## 6377 2020-06-26 Ohio 39 48638 2788
## 6378 2020-06-26 Oklahoma 40 12343 377
## 6379 2020-06-26 Oregon 41 8008 204
## 6380 2020-06-26 Pennsylvania 42 88950 6625
## 6381 2020-06-26 Puerto Rico 72 6922 151
## 6382 2020-06-26 Rhode Island 44 16661 927
## 6383 2020-06-26 South Carolina 45 30335 694
## 6384 2020-06-26 South Dakota 46 6535 88
## 6385 2020-06-26 Tennessee 47 38802 569
## 6386 2020-06-26 Texas 48 142582 2362
## 6387 2020-06-26 Utah 49 20218 166
## 6388 2020-06-26 Vermont 50 1198 56
## 6389 2020-06-26 Virgin Islands 78 81 6
## 6390 2020-06-26 Virginia 51 60570 1700
## 6391 2020-06-26 Washington 53 32489 1305
## 6392 2020-06-26 West Virginia 54 2729 92
## 6393 2020-06-26 Wisconsin 55 29718 775
## 6394 2020-06-26 Wyoming 56 1368 20
## 6395 2020-06-27 Alabama 1 35083 919
## 6396 2020-06-27 Alaska 2 1027 12
## 6397 2020-06-27 Arizona 4 70152 1581
## 6398 2020-06-27 Arkansas 5 19310 259
## 6399 2020-06-27 California 6 211453 5902
## 6400 2020-06-27 Colorado 8 32006 1674
## 6401 2020-06-27 Connecticut 9 46206 4311
## 6402 2020-06-27 Delaware 10 11091 507
## 6403 2020-06-27 District of Columbia 11 10216 548
## 6404 2020-06-27 Florida 12 132537 3389
## 6405 2020-06-27 Georgia 13 71066 2733
## 6406 2020-06-27 Guam 66 1217 6
## 6407 2020-06-27 Hawaii 15 856 18
## 6408 2020-06-27 Idaho 16 5319 92
## 6409 2020-06-27 Illinois 17 142536 7083
## 6410 2020-06-27 Indiana 18 45707 2616
## 6411 2020-06-27 Iowa 19 28203 704
## 6412 2020-06-27 Kansas 20 13767 269
## 6413 2020-06-27 Kentucky 21 15337 575
## 6414 2020-06-27 Louisiana 22 54882 3190
## 6415 2020-06-27 Maine 23 3154 104
## 6416 2020-06-27 Maryland 24 67032 3157
## 6417 2020-06-27 Massachusetts 25 108443 8040
## 6418 2020-06-27 Michigan 26 69802 6157
## 6419 2020-06-27 Minnesota 27 35068 1452
## 6420 2020-06-27 Mississippi 28 25531 1035
## 6421 2020-06-27 Missouri 29 20909 1021
## 6422 2020-06-27 Montana 30 852 22
## 6423 2020-06-27 Nebraska 31 18775 271
## 6424 2020-06-27 Nevada 32 16400 500
## 6425 2020-06-27 New Hampshire 33 5717 367
## 6426 2020-06-27 New Jersey 34 172727 14948
## 6427 2020-06-27 New Mexico 35 11619 491
## 6428 2020-06-27 New York 36 396669 31105
## 6429 2020-06-27 North Carolina 37 60709 1334
## 6430 2020-06-27 North Dakota 38 3467 87
## 6431 2020-06-27 Northern Mariana Islands 69 30 2
## 6432 2020-06-27 Ohio 39 49455 2804
## 6433 2020-06-27 Oklahoma 40 12642 384
## 6434 2020-06-27 Oregon 41 8110 204
## 6435 2020-06-27 Pennsylvania 42 89400 6652
## 6436 2020-06-27 Puerto Rico 72 7066 152
## 6437 2020-06-27 Rhode Island 44 16661 927
## 6438 2020-06-27 South Carolina 45 31939 711
## 6439 2020-06-27 South Dakota 46 6626 91
## 6440 2020-06-27 Tennessee 47 39813 577
## 6441 2020-06-27 Texas 48 148639 2398
## 6442 2020-06-27 Utah 49 20735 167
## 6443 2020-06-27 Vermont 50 1200 56
## 6444 2020-06-27 Virgin Islands 78 81 6
## 6445 2020-06-27 Virginia 51 61247 1724
## 6446 2020-06-27 Washington 53 33031 1311
## 6447 2020-06-27 West Virginia 54 2781 93
## 6448 2020-06-27 Wisconsin 55 30235 786
## 6449 2020-06-27 Wyoming 56 1392 20
## 6450 2020-06-28 Alabama 1 35441 919
## 6451 2020-06-28 Alaska 2 1060 12
## 6452 2020-06-28 Arizona 4 73961 1594
## 6453 2020-06-28 Arkansas 5 19818 264
## 6454 2020-06-28 California 6 216955 5937
## 6455 2020-06-28 Colorado 8 32290 1676
## 6456 2020-06-28 Connecticut 9 46303 4316
## 6457 2020-06-28 Delaware 10 11226 507
## 6458 2020-06-28 District of Columbia 11 10248 550
## 6459 2020-06-28 Florida 12 141067 3418
## 6460 2020-06-28 Georgia 13 72800 2735
## 6461 2020-06-28 Guam 66 1217 6
## 6462 2020-06-28 Hawaii 15 883 18
## 6463 2020-06-28 Idaho 16 5543 91
## 6464 2020-06-28 Illinois 17 143117 7098
## 6465 2020-06-28 Indiana 18 46071 2619
## 6466 2020-06-28 Iowa 19 28520 706
## 6467 2020-06-28 Kansas 20 14016 272
## 6468 2020-06-28 Kentucky 21 15480 577
## 6469 2020-06-28 Louisiana 22 56349 3199
## 6470 2020-06-28 Maine 23 3191 104
## 6471 2020-06-28 Maryland 24 67360 3168
## 6472 2020-06-28 Massachusetts 25 108667 8060
## 6473 2020-06-28 Michigan 26 70042 6161
## 6474 2020-06-28 Minnesota 27 35584 1460
## 6475 2020-06-28 Mississippi 28 25899 1039
## 6476 2020-06-28 Missouri 29 21254 1023
## 6477 2020-06-28 Montana 30 863 22
## 6478 2020-06-28 Nebraska 31 18900 271
## 6479 2020-06-28 Nevada 32 17187 500
## 6480 2020-06-28 New Hampshire 33 5747 367
## 6481 2020-06-28 New Jersey 34 173036 14975
## 6482 2020-06-28 New Mexico 35 11809 492
## 6483 2020-06-28 New York 36 397293 31137
## 6484 2020-06-28 North Carolina 37 62178 1338
## 6485 2020-06-28 North Dakota 38 3504 88
## 6486 2020-06-28 Northern Mariana Islands 69 30 2
## 6487 2020-06-28 Ohio 39 50309 2807
## 6488 2020-06-28 Oklahoma 40 12944 385
## 6489 2020-06-28 Oregon 41 8348 204
## 6490 2020-06-28 Pennsylvania 42 89785 6655
## 6491 2020-06-28 Puerto Rico 72 7189 153
## 6492 2020-06-28 Rhode Island 44 16661 927
## 6493 2020-06-28 South Carolina 45 33320 716
## 6494 2020-06-28 South Dakota 46 6681 91
## 6495 2020-06-28 Tennessee 47 39945 577
## 6496 2020-06-28 Texas 48 152866 2408
## 6497 2020-06-28 Utah 49 21155 167
## 6498 2020-06-28 Vermont 50 1202 56
## 6499 2020-06-28 Virgin Islands 78 81 6
## 6500 2020-06-28 Virginia 51 61736 1732
## 6501 2020-06-28 Washington 53 33341 1311
## 6502 2020-06-28 West Virginia 54 2831 93
## 6503 2020-06-28 Wisconsin 55 30716 786
## 6504 2020-06-28 Wyoming 56 1417 20
## 6505 2020-06-29 Alabama 1 37175 929
## 6506 2020-06-29 Alaska 2 1085 12
## 6507 2020-06-29 Arizona 4 74602 1598
## 6508 2020-06-29 Arkansas 5 20257 265
## 6509 2020-06-29 California 6 223995 5979
## 6510 2020-06-29 Colorado 8 32495 1682
## 6511 2020-06-29 Connecticut 9 46362 4320
## 6512 2020-06-29 Delaware 10 11376 507
## 6513 2020-06-29 District of Columbia 11 10292 551
## 6514 2020-06-29 Florida 12 146333 3446
## 6515 2020-06-29 Georgia 13 74816 2739
## 6516 2020-06-29 Guam 66 1224 6
## 6517 2020-06-29 Hawaii 15 884 18
## 6518 2020-06-29 Idaho 16 5770 91
## 6519 2020-06-29 Illinois 17 143885 7115
## 6520 2020-06-29 Indiana 18 46370 2624
## 6521 2020-06-29 Iowa 19 28874 712
## 6522 2020-06-29 Kansas 20 14568 276
## 6523 2020-06-29 Kentucky 21 15657 584
## 6524 2020-06-29 Louisiana 22 57189 3199
## 6525 2020-06-29 Maine 23 3219 105
## 6526 2020-06-29 Maryland 24 67837 3175
## 6527 2020-06-29 Massachusetts 25 108768 8095
## 6528 2020-06-29 Michigan 26 70356 6165
## 6529 2020-06-29 Minnesota 27 35896 1470
## 6530 2020-06-29 Mississippi 28 26568 1059
## 6531 2020-06-29 Missouri 29 21748 1026
## 6532 2020-06-29 Montana 30 919 22
## 6533 2020-06-29 Nebraska 31 19064 273
## 6534 2020-06-29 Nevada 32 17971 505
## 6535 2020-06-29 New Hampshire 33 5760 367
## 6536 2020-06-29 New Jersey 34 173126 14992
## 6537 2020-06-29 New Mexico 35 11982 493
## 6538 2020-06-29 New York 36 397684 31143
## 6539 2020-06-29 North Carolina 37 63692 1341
## 6540 2020-06-29 North Dakota 38 3548 88
## 6541 2020-06-29 Northern Mariana Islands 69 30 2
## 6542 2020-06-29 Ohio 39 51046 2818
## 6543 2020-06-29 Oklahoma 40 13172 385
## 6544 2020-06-29 Oregon 41 8509 207
## 6545 2020-06-29 Pennsylvania 42 90553 6663
## 6546 2020-06-29 Puerto Rico 72 7250 153
## 6547 2020-06-29 Rhode Island 44 16764 946
## 6548 2020-06-29 South Carolina 45 34644 720
## 6549 2020-06-29 South Dakota 46 6716 91
## 6550 2020-06-29 Tennessee 47 41388 585
## 6551 2020-06-29 Texas 48 158756 2430
## 6552 2020-06-29 Utah 49 21818 168
## 6553 2020-06-29 Vermont 50 1208 56
## 6554 2020-06-29 Virgin Islands 78 84 6
## 6555 2020-06-29 Virginia 51 62189 1740
## 6556 2020-06-29 Washington 53 34036 1321
## 6557 2020-06-29 West Virginia 54 2869 93
## 6558 2020-06-29 Wisconsin 55 31103 786
## 6559 2020-06-29 Wyoming 56 1450 20
## 6560 2020-06-30 Alabama 1 38045 950
## 6561 2020-06-30 Alaska 2 1132 12
## 6562 2020-06-30 Arizona 4 79399 1645
## 6563 2020-06-30 Arkansas 5 20777 270
## 6564 2020-06-30 California 6 232153 6083
## 6565 2020-06-30 Colorado 8 32698 1690
## 6566 2020-06-30 Connecticut 9 46514 4322
## 6567 2020-06-30 Delaware 10 11474 509
## 6568 2020-06-30 District of Columbia 11 10327 551
## 6569 2020-06-30 Florida 12 152426 3504
## 6570 2020-06-30 Georgia 13 77280 2758
## 6571 2020-06-30 Guam 66 1228 6
## 6572 2020-06-30 Hawaii 15 901 18
## 6573 2020-06-30 Idaho 16 6124 92
## 6574 2020-06-30 Illinois 17 144661 7136
## 6575 2020-06-30 Indiana 18 46740 2640
## 6576 2020-06-30 Iowa 19 29152 717
## 6577 2020-06-30 Kansas 20 14629 276
## 6578 2020-06-30 Kentucky 21 15916 588
## 6579 2020-06-30 Louisiana 22 58203 3221
## 6580 2020-06-30 Maine 23 3253 105
## 6581 2020-06-30 Maryland 24 68152 3190
## 6582 2020-06-30 Massachusetts 25 108882 8054
## 6583 2020-06-30 Michigan 26 70850 6197
## 6584 2020-06-30 Minnesota 27 36338 1476
## 6585 2020-06-30 Mississippi 28 27248 1073
## 6586 2020-06-30 Missouri 29 22275 1037
## 6587 2020-06-30 Montana 30 967 22
## 6588 2020-06-30 Nebraska 31 19194 279
## 6589 2020-06-30 Nevada 32 18582 507
## 6590 2020-06-30 New Hampshire 33 5782 371
## 6591 2020-06-30 New Jersey 34 173521 15035
## 6592 2020-06-30 New Mexico 35 12147 497
## 6593 2020-06-30 New York 36 398142 31776
## 6594 2020-06-30 North Carolina 37 65064 1362
## 6595 2020-06-30 North Dakota 38 3585 88
## 6596 2020-06-30 Northern Mariana Islands 69 30 2
## 6597 2020-06-30 Ohio 39 51789 2863
## 6598 2020-06-30 Oklahoma 40 13757 387
## 6599 2020-06-30 Oregon 41 8695 210
## 6600 2020-06-30 Pennsylvania 42 91226 6695
## 6601 2020-06-30 Puerto Rico 72 7465 153
## 6602 2020-06-30 Rhode Island 44 16813 950
## 6603 2020-06-30 South Carolina 45 36399 739
## 6604 2020-06-30 South Dakota 46 6764 91
## 6605 2020-06-30 Tennessee 47 42815 597
## 6606 2020-06-30 Texas 48 166703 2482
## 6607 2020-06-30 Utah 49 22364 172
## 6608 2020-06-30 Vermont 50 1208 56
## 6609 2020-06-30 Virgin Islands 78 90 6
## 6610 2020-06-30 Virginia 51 62787 1763
## 6611 2020-06-30 Washington 53 34541 1333
## 6612 2020-06-30 West Virginia 54 2904 93
## 6613 2020-06-30 Wisconsin 55 31723 793
## 6614 2020-06-30 Wyoming 56 1487 20
## 6615 2020-07-01 Alabama 1 38962 972
## 6616 2020-07-01 Alaska 2 1174 12
## 6617 2020-07-01 Arizona 4 84152 1726
## 6618 2020-07-01 Arkansas 5 21197 277
## 6619 2020-07-01 California 6 239764 6168
## 6620 2020-07-01 Colorado 8 33012 1697
## 6621 2020-07-01 Connecticut 9 46572 4324
## 6622 2020-07-01 Delaware 10 11510 509
## 6623 2020-07-01 District of Columbia 11 10365 553
## 6624 2020-07-01 Florida 12 158989 3549
## 6625 2020-07-01 Georgia 13 79589 2779
## 6626 2020-07-01 Guam 66 1240 6
## 6627 2020-07-01 Hawaii 15 909 18
## 6628 2020-07-01 Idaho 16 6379 92
## 6629 2020-07-01 Illinois 17 145541 7160
## 6630 2020-07-01 Indiana 18 47116 2650
## 6631 2020-07-01 Iowa 19 29618 717
## 6632 2020-07-01 Kansas 20 15142 280
## 6633 2020-07-01 Kentucky 21 16114 597
## 6634 2020-07-01 Louisiana 22 60286 3238
## 6635 2020-07-01 Maine 23 3294 105
## 6636 2020-07-01 Maryland 24 68502 3205
## 6637 2020-07-01 Massachusetts 25 109143 8081
## 6638 2020-07-01 Michigan 26 71279 6202
## 6639 2020-07-01 Minnesota 27 36753 1482
## 6640 2020-07-01 Mississippi 28 27900 1082
## 6641 2020-07-01 Missouri 29 22595 1049
## 6642 2020-07-01 Montana 30 1016 22
## 6643 2020-07-01 Nebraska 31 19325 282
## 6644 2020-07-01 Nevada 32 19151 512
## 6645 2020-07-01 New Hampshire 33 5802 373
## 6646 2020-07-01 New Jersey 34 173782 15078
## 6647 2020-07-01 New Mexico 35 12276 500
## 6648 2020-07-01 New York 36 398770 31791
## 6649 2020-07-01 North Carolina 37 66815 1389
## 6650 2020-07-01 North Dakota 38 3624 89
## 6651 2020-07-01 Northern Mariana Islands 69 30 2
## 6652 2020-07-01 Ohio 39 52865 2876
## 6653 2020-07-01 Oklahoma 40 14112 389
## 6654 2020-07-01 Oregon 41 9019 211
## 6655 2020-07-01 Pennsylvania 42 91864 6704
## 6656 2020-07-01 Puerto Rico 72 7537 153
## 6657 2020-07-01 Rhode Island 44 16853 956
## 6658 2020-07-01 South Carolina 45 37919 766
## 6659 2020-07-01 South Dakota 46 6826 93
## 6660 2020-07-01 Tennessee 47 44360 602
## 6661 2020-07-01 Texas 48 174826 2518
## 6662 2020-07-01 Utah 49 22864 173
## 6663 2020-07-01 Vermont 50 1210 56
## 6664 2020-07-01 Virgin Islands 78 92 6
## 6665 2020-07-01 Virginia 51 63203 1786
## 6666 2020-07-01 Washington 53 35258 1340
## 6667 2020-07-01 West Virginia 54 2979 93
## 6668 2020-07-01 Wisconsin 55 32307 794
## 6669 2020-07-01 Wyoming 56 1514 20
## 6670 2020-07-02 Alabama 1 40111 985
## 6671 2020-07-02 Alaska 2 1224 12
## 6672 2020-07-02 Arizona 4 87495 1766
## 6673 2020-07-02 Arkansas 5 22075 279
## 6674 2020-07-02 California 6 248198 6263
## 6675 2020-07-02 Colorado 8 33335 1701
## 6676 2020-07-02 Connecticut 9 46646 4326
## 6677 2020-07-02 Delaware 10 11731 510
## 6678 2020-07-02 District of Columbia 11 10390 554
## 6679 2020-07-02 Florida 12 169098 3616
## 6680 2020-07-02 Georgia 13 82475 2801
## 6681 2020-07-02 Guam 66 1249 6
## 6682 2020-07-02 Hawaii 15 929 18
## 6683 2020-07-02 Idaho 16 6688 93
## 6684 2020-07-02 Illinois 17 146407 7197
## 6685 2020-07-02 Indiana 18 47553 2662
## 6686 2020-07-02 Iowa 19 30259 719
## 6687 2020-07-02 Kansas 20 15226 282
## 6688 2020-07-02 Kentucky 21 16370 605
## 6689 2020-07-02 Louisiana 22 61669 3255
## 6690 2020-07-02 Maine 23 3328 105
## 6691 2020-07-02 Maryland 24 69015 3212
## 6692 2020-07-02 Massachusetts 25 109338 8132
## 6693 2020-07-02 Michigan 26 71853 6216
## 6694 2020-07-02 Minnesota 27 37247 1495
## 6695 2020-07-02 Mississippi 28 28770 1092
## 6696 2020-07-02 Missouri 29 23085 1056
## 6697 2020-07-02 Montana 30 1083 22
## 6698 2020-07-02 Nebraska 31 19476 284
## 6699 2020-07-02 Nevada 32 19871 525
## 6700 2020-07-02 New Hampshire 33 5822 375
## 6701 2020-07-02 New Jersey 34 174212 15107
## 6702 2020-07-02 New Mexico 35 12520 503
## 6703 2020-07-02 New York 36 399642 31814
## 6704 2020-07-02 North Carolina 37 68512 1402
## 6705 2020-07-02 North Dakota 38 3666 89
## 6706 2020-07-02 Northern Mariana Islands 69 30 2
## 6707 2020-07-02 Ohio 39 54166 2903
## 6708 2020-07-02 Oklahoma 40 14539 395
## 6709 2020-07-02 Oregon 41 9344 212
## 6710 2020-07-02 Pennsylvania 42 92703 6758
## 6711 2020-07-02 Puerto Rico 72 7608 153
## 6712 2020-07-02 Rhode Island 44 16941 959
## 6713 2020-07-02 South Carolina 45 39701 784
## 6714 2020-07-02 South Dakota 46 6893 97
## 6715 2020-07-02 Tennessee 47 46176 612
## 6716 2020-07-02 Texas 48 182260 2562
## 6717 2020-07-02 Utah 49 23466 176
## 6718 2020-07-02 Vermont 50 1227 56
## 6719 2020-07-02 Virgin Islands 78 98 6
## 6720 2020-07-02 Virginia 51 63735 1816
## 6721 2020-07-02 Washington 53 35921 1343
## 6722 2020-07-02 West Virginia 54 3053 93
## 6723 2020-07-02 Wisconsin 55 32876 801
## 6724 2020-07-02 Wyoming 56 1550 20
## 6725 2020-07-03 Alabama 1 41865 1006
## 6726 2020-07-03 Alaska 2 1284 13
## 6727 2020-07-03 Arizona 4 91894 1802
## 6728 2020-07-03 Arkansas 5 22622 281
## 6729 2020-07-03 California 6 256298 6315
## 6730 2020-07-03 Colorado 8 33607 1701
## 6731 2020-07-03 Connecticut 9 46717 4335
## 6732 2020-07-03 Delaware 10 11923 512
## 6733 2020-07-03 District of Columbia 11 10435 555
## 6734 2020-07-03 Florida 12 178586 3683
## 6735 2020-07-03 Georgia 13 85079 2808
## 6736 2020-07-03 Guam 66 1255 6
## 6737 2020-07-03 Hawaii 15 957 19
## 6738 2020-07-03 Idaho 16 7034 94
## 6739 2020-07-03 Illinois 17 147293 7222
## 6740 2020-07-03 Indiana 18 48099 2682
## 6741 2020-07-03 Iowa 19 30631 721
## 6742 2020-07-03 Kansas 20 16015 283
## 6743 2020-07-03 Kentucky 21 16655 608
## 6744 2020-07-03 Louisiana 22 63397 3278
## 6745 2020-07-03 Maine 23 3373 105
## 6746 2020-07-03 Maryland 24 69422 3223
## 6747 2020-07-03 Massachusetts 25 109628 8149
## 6748 2020-07-03 Michigan 26 72306 6219
## 6749 2020-07-03 Minnesota 27 37661 1503
## 6750 2020-07-03 Mississippi 28 29684 1103
## 6751 2020-07-03 Missouri 29 23620 1060
## 6752 2020-07-03 Montana 30 1128 23
## 6753 2020-07-03 Nebraska 31 19660 285
## 6754 2020-07-03 Nevada 32 20878 530
## 6755 2020-07-03 New Hampshire 33 5857 376
## 6756 2020-07-03 New Jersey 34 174598 15164
## 6757 2020-07-03 New Mexico 35 12776 511
## 6758 2020-07-03 New York 36 400561 31836
## 6759 2020-07-03 North Carolina 37 70451 1413
## 6760 2020-07-03 North Dakota 38 3731 89
## 6761 2020-07-03 Northern Mariana Islands 69 31 2
## 6762 2020-07-03 Ohio 39 55257 2903
## 6763 2020-07-03 Oklahoma 40 15065 398
## 6764 2020-07-03 Oregon 41 9643 215
## 6765 2020-07-03 Pennsylvania 42 93418 6790
## 6766 2020-07-03 Puerto Rico 72 7683 154
## 6767 2020-07-03 Rhode Island 44 16991 960
## 6768 2020-07-03 South Carolina 45 41532 793
## 6769 2020-07-03 South Dakota 46 6978 97
## 6770 2020-07-03 Tennessee 47 47882 626
## 6771 2020-07-03 Texas 48 190049 2609
## 6772 2020-07-03 Utah 49 24070 181
## 6773 2020-07-03 Vermont 50 1236 56
## 6774 2020-07-03 Virgin Islands 78 111 6
## 6775 2020-07-03 Virginia 51 64393 1845
## 6776 2020-07-03 Washington 53 36417 1353
## 6777 2020-07-03 West Virginia 54 3126 93
## 6778 2020-07-03 Wisconsin 55 33565 804
## 6779 2020-07-03 Wyoming 56 1582 20
## 6780 2020-07-04 Alabama 1 42862 1007
## 6781 2020-07-04 Alaska 2 1339 14
## 6782 2020-07-04 Arizona 4 94616 1821
## 6783 2020-07-04 Arkansas 5 23209 286
## 6784 2020-07-04 California 6 265176 6329
## 6785 2020-07-04 Colorado 8 33900 1703
## 6786 2020-07-04 Connecticut 9 46717 4335
## 6787 2020-07-04 Delaware 10 11996 512
## 6788 2020-07-04 District of Columbia 11 10447 557
## 6789 2020-07-04 Florida 12 190044 3701
## 6790 2020-07-04 Georgia 13 87592 2809
## 6791 2020-07-04 Guam 66 1257 6
## 6792 2020-07-04 Hawaii 15 981 19
## 6793 2020-07-04 Idaho 16 7431 94
## 6794 2020-07-04 Illinois 17 148151 7234
## 6795 2020-07-04 Indiana 18 48628 2687
## 6796 2020-07-04 Iowa 19 31167 721
## 6797 2020-07-04 Kansas 20 16165 284
## 6798 2020-07-04 Kentucky 21 16709 608
## 6799 2020-07-04 Louisiana 22 63397 3278
## 6800 2020-07-04 Maine 23 3397 107
## 6801 2020-07-04 Maryland 24 69724 3236
## 6802 2020-07-04 Massachusetts 25 109838 8172
## 6803 2020-07-04 Michigan 26 72702 6222
## 6804 2020-07-04 Minnesota 27 37661 1503
## 6805 2020-07-04 Mississippi 28 30674 1107
## 6806 2020-07-04 Missouri 29 24061 1062
## 6807 2020-07-04 Montana 30 1167 23
## 6808 2020-07-04 Nebraska 31 19826 285
## 6809 2020-07-04 Nevada 32 21671 530
## 6810 2020-07-04 New Hampshire 33 5871 380
## 6811 2020-07-04 New Jersey 34 174889 15189
## 6812 2020-07-04 New Mexico 35 13063 513
## 6813 2020-07-04 New York 36 401286 31860
## 6814 2020-07-04 North Carolina 37 71735 1414
## 6815 2020-07-04 North Dakota 38 3788 89
## 6816 2020-07-04 Northern Mariana Islands 69 31 2
## 6817 2020-07-04 Ohio 39 56183 2907
## 6818 2020-07-04 Oklahoma 40 15645 398
## 6819 2020-07-04 Oregon 41 9937 216
## 6820 2020-07-04 Pennsylvania 42 93922 6793
## 6821 2020-07-04 Puerto Rico 72 7787 155
## 6822 2020-07-04 Rhode Island 44 16991 960
## 6823 2020-07-04 South Carolina 45 43386 813
## 6824 2020-07-04 South Dakota 46 7028 97
## 6825 2020-07-04 Tennessee 47 49232 630
## 6826 2020-07-04 Texas 48 195707 2646
## 6827 2020-07-04 Utah 49 24717 181
## 6828 2020-07-04 Vermont 50 1238 56
## 6829 2020-07-04 Virgin Islands 78 112 6
## 6830 2020-07-04 Virginia 51 65109 1849
## 6831 2020-07-04 Washington 53 36799 1355
## 6832 2020-07-04 West Virginia 54 3205 94
## 6833 2020-07-04 Wisconsin 55 34243 804
## 6834 2020-07-04 Wyoming 56 1606 20
## 6835 2020-07-05 Alabama 1 43953 1007
## 6836 2020-07-05 Alaska 2 1371 14
## 6837 2020-07-05 Arizona 4 98126 1829
## 6838 2020-07-05 Arkansas 5 23814 287
## 6839 2020-07-05 California 6 271587 6369
## 6840 2020-07-05 Colorado 8 34100 1703
## 6841 2020-07-05 Connecticut 9 46717 4335
## 6842 2020-07-05 Delaware 10 12128 512
## 6843 2020-07-05 District of Columbia 11 10482 559
## 6844 2020-07-05 Florida 12 200103 3730
## 6845 2020-07-05 Georgia 13 89489 2812
## 6846 2020-07-05 Guam 66 1257 6
## 6847 2020-07-05 Hawaii 15 1005 19
## 6848 2020-07-05 Idaho 16 7799 94
## 6849 2020-07-05 Illinois 17 148730 7241
## 6850 2020-07-05 Indiana 18 49203 2693
## 6851 2020-07-05 Iowa 19 31612 721
## 6852 2020-07-05 Kansas 20 16289 287
## 6853 2020-07-05 Kentucky 21 16712 608
## 6854 2020-07-05 Louisiana 22 65334 3288
## 6855 2020-07-05 Maine 23 3415 109
## 6856 2020-07-05 Maryland 24 69957 3243
## 6857 2020-07-05 Massachusetts 25 109974 8183
## 6858 2020-07-05 Michigan 26 73027 6222
## 6859 2020-07-05 Minnesota 27 38173 1508
## 6860 2020-07-05 Mississippi 28 30900 1111
## 6861 2020-07-05 Missouri 29 24334 1062
## 6862 2020-07-05 Montana 30 1212 23
## 6863 2020-07-05 Nebraska 31 19937 285
## 6864 2020-07-05 Nevada 32 22518 537
## 6865 2020-07-05 New Hampshire 33 5897 381
## 6866 2020-07-05 New Jersey 34 175258 15211
## 6867 2020-07-05 New Mexico 35 13256 513
## 6868 2020-07-05 New York 36 401822 31895
## 6869 2020-07-05 North Carolina 37 73096 1414
## 6870 2020-07-05 North Dakota 38 3825 89
## 6871 2020-07-05 Northern Mariana Islands 69 31 2
## 6872 2020-07-05 Ohio 39 57151 2911
## 6873 2020-07-05 Oklahoma 40 15928 398
## 6874 2020-07-05 Oregon 41 10237 218
## 6875 2020-07-05 Pennsylvania 42 94403 6797
## 6876 2020-07-05 Puerto Rico 72 7916 155
## 6877 2020-07-05 Rhode Island 44 16991 960
## 6878 2020-07-05 South Carolina 45 44847 820
## 6879 2020-07-05 South Dakota 46 7063 97
## 6880 2020-07-05 Tennessee 47 50365 639
## 6881 2020-07-05 Texas 48 200137 2666
## 6882 2020-07-05 Utah 49 25005 184
## 6883 2020-07-05 Vermont 50 1249 56
## 6884 2020-07-05 Virgin Islands 78 112 6
## 6885 2020-07-05 Virginia 51 65748 1853
## 6886 2020-07-05 Washington 53 37468 1360
## 6887 2020-07-05 West Virginia 54 3335 95
## 6888 2020-07-05 Wisconsin 55 34750 804
## 6889 2020-07-05 Wyoming 56 1634 20
## 6890 2020-07-06 Alabama 1 44878 1007
## 6891 2020-07-06 Alaska 2 1401 14
## 6892 2020-07-06 Arizona 4 101542 1832
## 6893 2020-07-06 Arkansas 5 24253 292
## 6894 2020-07-06 California 6 277869 6452
## 6895 2020-07-06 Colorado 8 34316 1704
## 6896 2020-07-06 Connecticut 9 46976 4338
## 6897 2020-07-06 Delaware 10 12293 512
## 6898 2020-07-06 District of Columbia 11 10515 561
## 6899 2020-07-06 Florida 12 206439 3777
## 6900 2020-07-06 Georgia 13 91015 2829
## 6901 2020-07-06 Guam 66 1270 6
## 6902 2020-07-06 Hawaii 15 1012 19
## 6903 2020-07-06 Idaho 16 8222 94
## 6904 2020-07-06 Illinois 17 149428 7250
## 6905 2020-07-06 Indiana 18 49560 2698
## 6906 2020-07-06 Iowa 19 31764 725
## 6907 2020-07-06 Kansas 20 17082 288
## 6908 2020-07-06 Kentucky 21 17464 621
## 6909 2020-07-06 Louisiana 22 66435 3296
## 6910 2020-07-06 Maine 23 3423 109
## 6911 2020-07-06 Maryland 24 70497 3246
## 6912 2020-07-06 Massachusetts 25 110137 8198
## 6913 2020-07-06 Michigan 26 73403 6225
## 6914 2020-07-06 Minnesota 27 38606 1511
## 6915 2020-07-06 Mississippi 28 31257 1114
## 6916 2020-07-06 Missouri 29 24850 1068
## 6917 2020-07-06 Montana 30 1249 23
## 6918 2020-07-06 Nebraska 31 20052 286
## 6919 2020-07-06 Nevada 32 22930 537
## 6920 2020-07-06 New Hampshire 33 5914 382
## 6921 2020-07-06 New Jersey 34 175467 15229
## 6922 2020-07-06 New Mexico 35 13507 515
## 6923 2020-07-06 New York 36 402338 31911
## 6924 2020-07-06 North Carolina 37 74933 1424
## 6925 2020-07-06 North Dakota 38 3858 89
## 6926 2020-07-06 Northern Mariana Islands 69 31 2
## 6927 2020-07-06 Ohio 39 57956 2927
## 6928 2020-07-06 Oklahoma 40 16362 399
## 6929 2020-07-06 Oregon 41 10413 218
## 6930 2020-07-06 Pennsylvania 42 95187 6798
## 6931 2020-07-06 Puerto Rico 72 8585 155
## 6932 2020-07-06 Rhode Island 44 16991 960
## 6933 2020-07-06 South Carolina 45 46380 827
## 6934 2020-07-06 South Dakota 46 7105 97
## 6935 2020-07-06 Tennessee 47 51509 646
## 6936 2020-07-06 Texas 48 209350 2726
## 6937 2020-07-06 Utah 49 25653 190
## 6938 2020-07-06 Vermont 50 1251 56
## 6939 2020-07-06 Virgin Islands 78 116 6
## 6940 2020-07-06 Virginia 51 66102 1853
## 6941 2020-07-06 Washington 53 38517 1370
## 6942 2020-07-06 West Virginia 54 3442 95
## 6943 2020-07-06 Wisconsin 55 35318 805
## 6944 2020-07-06 Wyoming 56 1675 20
## 6945 2020-07-07 Alabama 1 45785 1033
## 6946 2020-07-07 Alaska 2 1423 15
## 6947 2020-07-07 Arizona 4 105159 1933
## 6948 2020-07-07 Arkansas 5 24512 301
## 6949 2020-07-07 California 6 287766 6563
## 6950 2020-07-07 Colorado 8 34717 1709
## 6951 2020-07-07 Connecticut 9 47033 4338
## 6952 2020-07-07 Delaware 10 12414 514
## 6953 2020-07-07 District of Columbia 11 10569 561
## 6954 2020-07-07 Florida 12 213786 3840
## 6955 2020-07-07 Georgia 13 93707 2850
## 6956 2020-07-07 Guam 66 1272 6
## 6957 2020-07-07 Hawaii 15 1053 19
## 6958 2020-07-07 Idaho 16 8582 94
## 6959 2020-07-07 Illinois 17 150110 7281
## 6960 2020-07-07 Indiana 18 49859 2717
## 6961 2020-07-07 Iowa 19 32153 732
## 6962 2020-07-07 Kansas 20 17157 290
## 6963 2020-07-07 Kentucky 21 17820 630
## 6964 2020-07-07 Louisiana 22 68371 3319
## 6965 2020-07-07 Maine 23 3440 110
## 6966 2020-07-07 Maryland 24 70986 3266
## 6967 2020-07-07 Massachusetts 25 110338 8213
## 6968 2020-07-07 Michigan 26 74011 6256
## 6969 2020-07-07 Minnesota 27 39170 1514
## 6970 2020-07-07 Mississippi 28 32214 1158
## 6971 2020-07-07 Missouri 29 25566 1083
## 6972 2020-07-07 Montana 30 1327 23
## 6973 2020-07-07 Nebraska 31 20205 287
## 6974 2020-07-07 Nevada 32 23848 549
## 6975 2020-07-07 New Hampshire 33 5932 384
## 6976 2020-07-07 New Jersey 34 175734 15281
## 6977 2020-07-07 New Mexico 35 13727 519
## 6978 2020-07-07 New York 36 402928 31934
## 6979 2020-07-07 North Carolina 37 76188 1446
## 6980 2020-07-07 North Dakota 38 3903 89
## 6981 2020-07-07 Northern Mariana Islands 69 31 2
## 6982 2020-07-07 Ohio 39 58904 2970
## 6983 2020-07-07 Oklahoma 40 17220 404
## 6984 2020-07-07 Oregon 41 10654 224
## 6985 2020-07-07 Pennsylvania 42 95986 6835
## 6986 2020-07-07 Puerto Rico 72 8714 157
## 6987 2020-07-07 Rhode Island 44 17154 969
## 6988 2020-07-07 South Carolina 45 47352 846
## 6989 2020-07-07 South Dakota 46 7163 98
## 6990 2020-07-07 Tennessee 47 52643 657
## 6991 2020-07-07 Texas 48 219164 2816
## 6992 2020-07-07 Utah 49 26203 194
## 6993 2020-07-07 Vermont 50 1254 56
## 6994 2020-07-07 Virgin Islands 78 122 6
## 6995 2020-07-07 Virginia 51 66740 1881
## 6996 2020-07-07 Washington 53 39063 1385
## 6997 2020-07-07 West Virginia 54 3505 95
## 6998 2020-07-07 Wisconsin 55 35834 817
## 6999 2020-07-07 Wyoming 56 1711 21
## 7000 2020-07-08 Alabama 1 46962 1058
## 7001 2020-07-08 Alaska 2 1472 15
## 7002 2020-07-08 Arizona 4 108710 1973
## 7003 2020-07-08 Arkansas 5 25246 305
## 7004 2020-07-08 California 6 296304 6708
## 7005 2020-07-08 Colorado 8 35185 1707
## 7006 2020-07-08 Connecticut 9 47108 4343
## 7007 2020-07-08 Delaware 10 12462 515
## 7008 2020-07-08 District of Columbia 11 10642 564
## 7009 2020-07-08 Florida 12 223775 3888
## 7010 2020-07-08 Georgia 13 96538 2871
## 7011 2020-07-08 Guam 66 1276 6
## 7012 2020-07-08 Hawaii 15 1076 19
## 7013 2020-07-08 Idaho 16 9004 98
## 7014 2020-07-08 Illinois 17 151055 7315
## 7015 2020-07-08 Indiana 18 50309 2732
## 7016 2020-07-08 Iowa 19 32716 739
## 7017 2020-07-08 Kansas 20 17807 291
## 7018 2020-07-08 Kentucky 21 18204 634
## 7019 2020-07-08 Louisiana 22 70259 3339
## 7020 2020-07-08 Maine 23 3460 110
## 7021 2020-07-08 Maryland 24 71455 3275
## 7022 2020-07-08 Massachusetts 25 110602 8243
## 7023 2020-07-08 Michigan 26 74660 6266
## 7024 2020-07-08 Minnesota 27 39627 1523
## 7025 2020-07-08 Mississippi 28 32888 1188
## 7026 2020-07-08 Missouri 29 26343 1089
## 7027 2020-07-08 Montana 30 1371 23
## 7028 2020-07-08 Nebraska 31 20437 291
## 7029 2020-07-08 Nevada 32 24378 556
## 7030 2020-07-08 New Hampshire 33 5952 386
## 7031 2020-07-08 New Jersey 34 175986 15423
## 7032 2020-07-08 New Mexico 35 14017 527
## 7033 2020-07-08 New York 36 403619 31945
## 7034 2020-07-08 North Carolina 37 77661 1470
## 7035 2020-07-08 North Dakota 38 3975 89
## 7036 2020-07-08 Northern Mariana Islands 69 31 2
## 7037 2020-07-08 Ohio 39 60181 2991
## 7038 2020-07-08 Oklahoma 40 17893 407
## 7039 2020-07-08 Oregon 41 10872 228
## 7040 2020-07-08 Pennsylvania 42 96817 6864
## 7041 2020-07-08 Puerto Rico 72 8745 159
## 7042 2020-07-08 Rhode Island 44 17204 971
## 7043 2020-07-08 South Carolina 45 48909 884
## 7044 2020-07-08 South Dakota 46 7242 98
## 7045 2020-07-08 Tennessee 47 54756 678
## 7046 2020-07-08 Texas 48 229116 2935
## 7047 2020-07-08 Utah 49 26921 201
## 7048 2020-07-08 Vermont 50 1256 56
## 7049 2020-07-08 Virgin Islands 78 144 6
## 7050 2020-07-08 Virginia 51 67375 1905
## 7051 2020-07-08 Washington 53 39661 1395
## 7052 2020-07-08 West Virginia 54 3707 95
## 7053 2020-07-08 Wisconsin 55 36526 818
## 7054 2020-07-08 Wyoming 56 1740 21
## 7055 2020-07-09 Alabama 1 49174 1068
## 7056 2020-07-09 Alaska 2 1521 15
## 7057 2020-07-09 Arizona 4 112783 2047
## 7058 2020-07-09 Arkansas 5 26052 309
## 7059 2020-07-09 California 6 303516 6825
## 7060 2020-07-09 Colorado 8 35604 1707
## 7061 2020-07-09 Connecticut 9 47209 4348
## 7062 2020-07-09 Delaware 10 12531 517
## 7063 2020-07-09 District of Columbia 11 10679 568
## 7064 2020-07-09 Florida 12 232710 4008
## 7065 2020-07-09 Georgia 13 98693 2880
## 7066 2020-07-09 Guam 66 1278 6
## 7067 2020-07-09 Hawaii 15 1112 19
## 7068 2020-07-09 Idaho 16 9598 101
## 7069 2020-07-09 Illinois 17 152188 7333
## 7070 2020-07-09 Indiana 18 50829 2739
## 7071 2020-07-09 Iowa 19 33316 742
## 7072 2020-07-09 Kansas 20 18031 294
## 7073 2020-07-09 Kentucky 21 18576 640
## 7074 2020-07-09 Louisiana 22 72102 3355
## 7075 2020-07-09 Maine 23 3486 111
## 7076 2020-07-09 Maryland 24 72037 3288
## 7077 2020-07-09 Massachusetts 25 110897 8268
## 7078 2020-07-09 Michigan 26 75247 6275
## 7079 2020-07-09 Minnesota 27 40201 1528
## 7080 2020-07-09 Mississippi 28 33591 1204
## 7081 2020-07-09 Missouri 29 27301 1095
## 7082 2020-07-09 Montana 30 1466 25
## 7083 2020-07-09 Nebraska 31 20658 294
## 7084 2020-07-09 Nevada 32 25055 574
## 7085 2020-07-09 New Hampshire 33 5973 387
## 7086 2020-07-09 New Jersey 34 176217 15448
## 7087 2020-07-09 New Mexico 35 14251 533
## 7088 2020-07-09 New York 36 404207 31979
## 7089 2020-07-09 North Carolina 37 79564 1487
## 7090 2020-07-09 North Dakota 38 4074 89
## 7091 2020-07-09 Northern Mariana Islands 69 31 2
## 7092 2020-07-09 Ohio 39 61331 3006
## 7093 2020-07-09 Oklahoma 40 18496 410
## 7094 2020-07-09 Oregon 41 11247 233
## 7095 2020-07-09 Pennsylvania 42 97634 6895
## 7096 2020-07-09 Puerto Rico 72 8862 159
## 7097 2020-07-09 Rhode Island 44 17243 974
## 7098 2020-07-09 South Carolina 45 50691 905
## 7099 2020-07-09 South Dakota 46 7336 101
## 7100 2020-07-09 Tennessee 47 56531 700
## 7101 2020-07-09 Texas 48 240025 3037
## 7102 2020-07-09 Utah 49 27632 205
## 7103 2020-07-09 Vermont 50 1272 56
## 7104 2020-07-09 Virgin Islands 78 153 6
## 7105 2020-07-09 Virginia 51 67988 1937
## 7106 2020-07-09 Washington 53 40369 1410
## 7107 2020-07-09 West Virginia 54 3826 95
## 7108 2020-07-09 Wisconsin 55 37358 821
## 7109 2020-07-09 Wyoming 56 1774 21
## 7110 2020-07-10 Alabama 1 50508 1104
## 7111 2020-07-10 Alaska 2 1579 15
## 7112 2020-07-10 Arizona 4 116947 2093
## 7113 2020-07-10 Arkansas 5 26803 313
## 7114 2020-07-10 California 6 311505 6936
## 7115 2020-07-10 Colorado 8 36210 1724
## 7116 2020-07-10 Connecticut 9 47287 4348
## 7117 2020-07-10 Delaware 10 12652 517
## 7118 2020-07-10 District of Columbia 11 10743 568
## 7119 2020-07-10 Florida 12 244143 4101
## 7120 2020-07-10 Georgia 13 103597 2915
## 7121 2020-07-10 Guam 66 1279 6
## 7122 2020-07-10 Hawaii 15 1139 19
## 7123 2020-07-10 Idaho 16 10073 101
## 7124 2020-07-10 Illinois 17 153406 7349
## 7125 2020-07-10 Indiana 18 51567 2748
## 7126 2020-07-10 Iowa 19 34232 748
## 7127 2020-07-10 Kansas 20 18799 294
## 7128 2020-07-10 Kentucky 21 19076 647
## 7129 2020-07-10 Louisiana 22 74744 3380
## 7130 2020-07-10 Maine 23 3499 111
## 7131 2020-07-10 Maryland 24 72503 3303
## 7132 2020-07-10 Massachusetts 25 111110 8296
## 7133 2020-07-10 Michigan 26 75871 6288
## 7134 2020-07-10 Minnesota 27 40805 1533
## 7135 2020-07-10 Mississippi 28 34622 1215
## 7136 2020-07-10 Missouri 29 28060 1107
## 7137 2020-07-10 Montana 30 1593 28
## 7138 2020-07-10 Nebraska 31 20834 294
## 7139 2020-07-10 Nevada 32 25961 581
## 7140 2020-07-10 New Hampshire 33 5991 390
## 7141 2020-07-10 New Jersey 34 176575 15479
## 7142 2020-07-10 New Mexico 35 14549 539
## 7143 2020-07-10 New York 36 404997 32004
## 7144 2020-07-10 North Carolina 37 81737 1503
## 7145 2020-07-10 North Dakota 38 4158 89
## 7146 2020-07-10 Northern Mariana Islands 69 31 2
## 7147 2020-07-10 Ohio 39 62856 3032
## 7148 2020-07-10 Oklahoma 40 19092 416
## 7149 2020-07-10 Oregon 41 11501 235
## 7150 2020-07-10 Pennsylvania 42 98574 6929
## 7151 2020-07-10 Puerto Rico 72 9137 159
## 7152 2020-07-10 Rhode Island 44 17312 976
## 7153 2020-07-10 South Carolina 45 52419 929
## 7154 2020-07-10 South Dakota 46 7401 107
## 7155 2020-07-10 Tennessee 47 58224 713
## 7156 2020-07-10 Texas 48 249948 3129
## 7157 2020-07-10 Utah 49 28452 207
## 7158 2020-07-10 Vermont 50 1277 56
## 7159 2020-07-10 Virgin Islands 78 167 6
## 7160 2020-07-10 Virginia 51 68931 1958
## 7161 2020-07-10 Washington 53 41090 1426
## 7162 2020-07-10 West Virginia 54 3983 95
## 7163 2020-07-10 Wisconsin 55 38414 825
## 7164 2020-07-10 Wyoming 56 1790 21
## 7165 2020-07-11 Alabama 1 51947 1114
## 7166 2020-07-11 Alaska 2 1656 15
## 7167 2020-07-11 Arizona 4 119991 2158
## 7168 2020-07-11 Arkansas 5 27864 319
## 7169 2020-07-11 California 6 320030 7012
## 7170 2020-07-11 Colorado 8 36633 1725
## 7171 2020-07-11 Connecticut 9 47287 4348
## 7172 2020-07-11 Delaware 10 12743 517
## 7173 2020-07-11 District of Columbia 11 10801 568
## 7174 2020-07-11 Florida 12 254503 4196
## 7175 2020-07-11 Georgia 13 106574 2946
## 7176 2020-07-11 Guam 66 1281 6
## 7177 2020-07-11 Hawaii 15 1181 19
## 7178 2020-07-11 Idaho 16 10584 102
## 7179 2020-07-11 Illinois 17 154530 7372
## 7180 2020-07-11 Indiana 18 52358 2756
## 7181 2020-07-11 Iowa 19 34695 748
## 7182 2020-07-11 Kansas 20 18983 294
## 7183 2020-07-11 Kentucky 21 19530 647
## 7184 2020-07-11 Louisiana 22 76911 3403
## 7185 2020-07-11 Maine 23 3520 112
## 7186 2020-07-11 Maryland 24 73060 3310
## 7187 2020-07-11 Massachusetts 25 111398 8310
## 7188 2020-07-11 Michigan 26 76499 6316
## 7189 2020-07-11 Minnesota 27 41609 1537
## 7190 2020-07-11 Mississippi 28 35419 1230
## 7191 2020-07-11 Missouri 29 28649 1112
## 7192 2020-07-11 Montana 30 1677 29
## 7193 2020-07-11 Nebraska 31 21035 296
## 7194 2020-07-11 Nevada 32 26912 592
## 7195 2020-07-11 New Hampshire 33 6024 391
## 7196 2020-07-11 New Jersey 34 176906 15525
## 7197 2020-07-11 New Mexico 35 14773 543
## 7198 2020-07-11 New York 36 405724 32019
## 7199 2020-07-11 North Carolina 37 83996 1520
## 7200 2020-07-11 North Dakota 38 4247 91
## 7201 2020-07-11 Northern Mariana Islands 69 33 2
## 7202 2020-07-11 Ohio 39 64214 3036
## 7203 2020-07-11 Oklahoma 40 19779 421
## 7204 2020-07-11 Oregon 41 11851 235
## 7205 2020-07-11 Pennsylvania 42 99252 6945
## 7206 2020-07-11 Puerto Rico 72 9366 167
## 7207 2020-07-11 Rhode Island 44 17312 976
## 7208 2020-07-11 South Carolina 45 54699 951
## 7209 2020-07-11 South Dakota 46 7454 109
## 7210 2020-07-11 Tennessee 47 59981 728
## 7211 2020-07-11 Texas 48 258280 3206
## 7212 2020-07-11 Utah 49 29071 212
## 7213 2020-07-11 Vermont 50 1283 56
## 7214 2020-07-11 Virgin Islands 78 181 6
## 7215 2020-07-11 Virginia 51 69782 1962
## 7216 2020-07-11 Washington 53 41326 1426
## 7217 2020-07-11 West Virginia 54 4146 96
## 7218 2020-07-11 Wisconsin 55 39095 829
## 7219 2020-07-11 Wyoming 56 1839 21
## 7220 2020-07-12 Alabama 1 53587 1121
## 7221 2020-07-12 Alaska 2 1772 15
## 7222 2020-07-12 Arizona 4 122479 2239
## 7223 2020-07-12 Arkansas 5 28367 321
## 7224 2020-07-12 California 6 327676 7042
## 7225 2020-07-12 Colorado 8 36933 1726
## 7226 2020-07-12 Connecticut 9 47287 4348
## 7227 2020-07-12 Delaware 10 12804 517
## 7228 2020-07-12 District of Columbia 11 10847 568
## 7229 2020-07-12 Florida 12 269803 4241
## 7230 2020-07-12 Georgia 13 108389 2951
## 7231 2020-07-12 Guam 66 1281 6
## 7232 2020-07-12 Hawaii 15 1201 19
## 7233 2020-07-12 Idaho 16 10971 102
## 7234 2020-07-12 Illinois 17 155355 7391
## 7235 2020-07-12 Indiana 18 52892 2760
## 7236 2020-07-12 Iowa 19 35410 752
## 7237 2020-07-12 Kansas 20 19295 300
## 7238 2020-07-12 Kentucky 21 19762 649
## 7239 2020-07-12 Louisiana 22 78230 3416
## 7240 2020-07-12 Maine 23 3539 114
## 7241 2020-07-12 Maryland 24 73705 3319
## 7242 2020-07-12 Massachusetts 25 111597 8325
## 7243 2020-07-12 Michigan 26 76936 6317
## 7244 2020-07-12 Minnesota 27 42319 1540
## 7245 2020-07-12 Mississippi 28 36287 1249
## 7246 2020-07-12 Missouri 29 29173 1113
## 7247 2020-07-12 Montana 30 1758 29
## 7248 2020-07-12 Nebraska 31 21214 296
## 7249 2020-07-12 Nevada 32 27745 593
## 7250 2020-07-12 New Hampshire 33 6054 391
## 7251 2020-07-12 New Jersey 34 177245 15525
## 7252 2020-07-12 New Mexico 35 15028 545
## 7253 2020-07-12 New York 36 406403 32029
## 7254 2020-07-12 North Carolina 37 85831 1532
## 7255 2020-07-12 North Dakota 38 4338 91
## 7256 2020-07-12 Northern Mariana Islands 69 33 2
## 7257 2020-07-12 Ohio 39 65592 3058
## 7258 2020-07-12 Oklahoma 40 20235 422
## 7259 2020-07-12 Oregon 41 12170 237
## 7260 2020-07-12 Pennsylvania 42 99794 6950
## 7261 2020-07-12 Puerto Rico 72 9654 167
## 7262 2020-07-12 Rhode Island 44 17312 976
## 7263 2020-07-12 South Carolina 45 56648 961
## 7264 2020-07-12 South Dakota 46 7499 109
## 7265 2020-07-12 Tennessee 47 61106 731
## 7266 2020-07-12 Texas 48 264811 3246
## 7267 2020-07-12 Utah 49 29552 215
## 7268 2020-07-12 Vermont 50 1296 56
## 7269 2020-07-12 Virgin Islands 78 206 6
## 7270 2020-07-12 Virginia 51 70670 1966
## 7271 2020-07-12 Washington 53 42181 1438
## 7272 2020-07-12 West Virginia 54 4244 96
## 7273 2020-07-12 Wisconsin 55 39901 828
## 7274 2020-07-12 Wyoming 56 1862 21
## 7275 2020-07-13 Alabama 1 55545 1124
## 7276 2020-07-13 Alaska 2 1843 15
## 7277 2020-07-13 Arizona 4 123917 2250
## 7278 2020-07-13 Arkansas 5 28939 323
## 7279 2020-07-13 California 6 336206 7086
## 7280 2020-07-13 Colorado 8 37303 1728
## 7281 2020-07-13 Connecticut 9 47510 4371
## 7282 2020-07-13 Delaware 10 12879 517
## 7283 2020-07-13 District of Columbia 11 10906 568
## 7284 2020-07-13 Florida 12 282427 4276
## 7285 2020-07-13 Georgia 13 111937 2972
## 7286 2020-07-13 Guam 66 1281 6
## 7287 2020-07-13 Hawaii 15 1222 21
## 7288 2020-07-13 Idaho 16 11531 102
## 7289 2020-07-13 Illinois 17 156288 7398
## 7290 2020-07-13 Indiana 18 53327 2762
## 7291 2020-07-13 Iowa 19 35631 755
## 7292 2020-07-13 Kansas 20 20265 301
## 7293 2020-07-13 Kentucky 21 20127 656
## 7294 2020-07-13 Louisiana 22 79935 3423
## 7295 2020-07-13 Maine 23 3558 114
## 7296 2020-07-13 Maryland 24 74124 3325
## 7297 2020-07-13 Massachusetts 25 111827 8330
## 7298 2020-07-13 Michigan 26 77354 6324
## 7299 2020-07-13 Minnesota 27 42810 1542
## 7300 2020-07-13 Mississippi 28 36680 1250
## 7301 2020-07-13 Missouri 29 29781 1126
## 7302 2020-07-13 Montana 30 1908 32
## 7303 2020-07-13 Nebraska 31 21444 298
## 7304 2020-07-13 Nevada 32 28597 596
## 7305 2020-07-13 New Hampshire 33 6068 391
## 7306 2020-07-13 New Jersey 34 177469 15560
## 7307 2020-07-13 New Mexico 35 15291 548
## 7308 2020-07-13 New York 36 406962 32075
## 7309 2020-07-13 North Carolina 37 87653 1547
## 7310 2020-07-13 North Dakota 38 4446 91
## 7311 2020-07-13 Northern Mariana Islands 69 33 2
## 7312 2020-07-13 Ohio 39 66853 3064
## 7313 2020-07-13 Oklahoma 40 20745 424
## 7314 2020-07-13 Oregon 41 12511 240
## 7315 2020-07-13 Pennsylvania 42 100378 6955
## 7316 2020-07-13 Puerto Rico 72 10010 167
## 7317 2020-07-13 Rhode Island 44 17487 984
## 7318 2020-07-13 South Carolina 45 58168 972
## 7319 2020-07-13 South Dakota 46 7524 109
## 7320 2020-07-13 Tennessee 47 63615 738
## 7321 2020-07-13 Texas 48 273732 3313
## 7322 2020-07-13 Utah 49 30282 216
## 7323 2020-07-13 Vermont 50 1301 56
## 7324 2020-07-13 Virgin Islands 78 217 6
## 7325 2020-07-13 Virginia 51 71642 1968
## 7326 2020-07-13 Washington 53 43538 1439
## 7327 2020-07-13 West Virginia 54 4313 97
## 7328 2020-07-13 Wisconsin 55 40603 828
## 7329 2020-07-13 Wyoming 56 1903 21
## 7330 2020-07-14 Alabama 1 57255 1164
## 7331 2020-07-14 Alaska 2 1897 15
## 7332 2020-07-14 Arizona 4 128126 2341
## 7333 2020-07-14 Arkansas 5 29733 331
## 7334 2020-07-14 California 6 346593 7227
## 7335 2020-07-14 Colorado 8 37761 1739
## 7336 2020-07-14 Connecticut 9 47530 4372
## 7337 2020-07-14 Delaware 10 12969 518
## 7338 2020-07-14 District of Columbia 11 10946 568
## 7339 2020-07-14 Florida 12 291621 4408
## 7340 2020-07-14 Georgia 13 114579 2996
## 7341 2020-07-14 Guam 66 1281 6
## 7342 2020-07-14 Hawaii 15 1243 21
## 7343 2020-07-14 Idaho 16 11962 103
## 7344 2020-07-14 Illinois 17 157055 7425
## 7345 2020-07-14 Indiana 18 54001 2775
## 7346 2020-07-14 Iowa 19 35942 759
## 7347 2020-07-14 Kansas 20 20347 303
## 7348 2020-07-14 Kentucky 21 20702 665
## 7349 2020-07-14 Louisiana 22 82150 3445
## 7350 2020-07-14 Maine 23 3566 114
## 7351 2020-07-14 Maryland 24 74836 3334
## 7352 2020-07-14 Massachusetts 25 112130 8340
## 7353 2020-07-14 Michigan 26 78045 6330
## 7354 2020-07-14 Minnesota 27 43208 1548
## 7355 2020-07-14 Mississippi 28 37542 1272
## 7356 2020-07-14 Missouri 29 30817 1136
## 7357 2020-07-14 Montana 30 2038 34
## 7358 2020-07-14 Nebraska 31 21717 299
## 7359 2020-07-14 Nevada 32 29669 613
## 7360 2020-07-14 New Hampshire 33 6091 392
## 7361 2020-07-14 New Jersey 34 177862 15582
## 7362 2020-07-14 New Mexico 35 15514 551
## 7363 2020-07-14 New York 36 407875 32092
## 7364 2020-07-14 North Carolina 37 89767 1582
## 7365 2020-07-14 North Dakota 38 4497 92
## 7366 2020-07-14 Northern Mariana Islands 69 36 2
## 7367 2020-07-14 Ohio 39 67995 3069
## 7368 2020-07-14 Oklahoma 40 21738 428
## 7369 2020-07-14 Oregon 41 12834 247
## 7370 2020-07-14 Pennsylvania 42 101360 6973
## 7371 2020-07-14 Puerto Rico 72 10123 169
## 7372 2020-07-14 Rhode Island 44 17588 985
## 7373 2020-07-14 South Carolina 45 60389 993
## 7374 2020-07-14 South Dakota 46 7572 109
## 7375 2020-07-14 Tennessee 47 65412 757
## 7376 2020-07-14 Texas 48 284638 3449
## 7377 2020-07-14 Utah 49 30774 226
## 7378 2020-07-14 Vermont 50 1305 56
## 7379 2020-07-14 Virgin Islands 78 243 6
## 7380 2020-07-14 Virginia 51 72443 1977
## 7381 2020-07-14 Washington 53 44257 1465
## 7382 2020-07-14 West Virginia 54 4407 97
## 7383 2020-07-14 Wisconsin 55 41516 834
## 7384 2020-07-14 Wyoming 56 1951 22
## 7385 2020-07-15 Alabama 1 59067 1211
## 7386 2020-07-15 Alaska 2 1958 15
## 7387 2020-07-15 Arizona 4 131411 2442
## 7388 2020-07-15 Arkansas 5 30297 335
## 7389 2020-07-15 California 6 355497 7368
## 7390 2020-07-15 Colorado 8 38240 1745
## 7391 2020-07-15 Connecticut 9 47636 4380
## 7392 2020-07-15 Delaware 10 13050 521
## 7393 2020-07-15 District of Columbia 11 11026 571
## 7394 2020-07-15 Florida 12 301802 4520
## 7395 2020-07-15 Georgia 13 118147 3030
## 7396 2020-07-15 Guam 66 1282 6
## 7397 2020-07-15 Hawaii 15 1271 21
## 7398 2020-07-15 Idaho 16 12599 111
## 7399 2020-07-15 Illinois 17 158451 7435
## 7400 2020-07-15 Indiana 18 54698 2785
## 7401 2020-07-15 Iowa 19 36536 777
## 7402 2020-07-15 Kansas 20 21157 308
## 7403 2020-07-15 Kentucky 21 21148 668
## 7404 2020-07-15 Louisiana 22 84241 3461
## 7405 2020-07-15 Maine 23 3578 114
## 7406 2020-07-15 Maryland 24 75576 3341
## 7407 2020-07-15 Massachusetts 25 112347 8368
## 7408 2020-07-15 Michigan 26 79081 6333
## 7409 2020-07-15 Minnesota 27 43782 1558
## 7410 2020-07-15 Mississippi 28 38567 1290
## 7411 2020-07-15 Missouri 29 31737 1141
## 7412 2020-07-15 Montana 30 2149 34
## 7413 2020-07-15 Nebraska 31 21979 302
## 7414 2020-07-15 Nevada 32 30587 619
## 7415 2020-07-15 New Hampshire 33 6113 394
## 7416 2020-07-15 New Jersey 34 178252 15634
## 7417 2020-07-15 New Mexico 35 15841 557
## 7418 2020-07-15 New York 36 408709 32115
## 7419 2020-07-15 North Carolina 37 91573 1598
## 7420 2020-07-15 North Dakota 38 4569 92
## 7421 2020-07-15 Northern Mariana Islands 69 36 2
## 7422 2020-07-15 Ohio 39 69311 3075
## 7423 2020-07-15 Oklahoma 40 22813 432
## 7424 2020-07-15 Oregon 41 13129 249
## 7425 2020-07-15 Pennsylvania 42 102361 7011
## 7426 2020-07-15 Puerto Rico 72 10379 171
## 7427 2020-07-15 Rhode Island 44 17640 987
## 7428 2020-07-15 South Carolina 45 62245 998
## 7429 2020-07-15 South Dakota 46 7652 111
## 7430 2020-07-15 Tennessee 47 67515 773
## 7431 2020-07-15 Texas 48 296478 3590
## 7432 2020-07-15 Utah 49 31228 233
## 7433 2020-07-15 Vermont 50 1318 56
## 7434 2020-07-15 Virgin Islands 78 249 6
## 7435 2020-07-15 Virginia 51 73527 1992
## 7436 2020-07-15 Washington 53 45004 1486
## 7437 2020-07-15 West Virginia 54 4557 98
## 7438 2020-07-15 Wisconsin 55 42409 835
## 7439 2020-07-15 Wyoming 56 1985 22
## 7440 2020-07-16 Alabama 1 61088 1230
## 7441 2020-07-16 Alaska 2 2034 15
## 7442 2020-07-16 Arizona 4 134730 2506
## 7443 2020-07-16 Arkansas 5 31114 341
## 7444 2020-07-16 California 6 364761 7490
## 7445 2020-07-16 Colorado 8 38817 1746
## 7446 2020-07-16 Connecticut 9 47750 4389
## 7447 2020-07-16 Delaware 10 13114 521
## 7448 2020-07-16 District of Columbia 11 11076 574
## 7449 2020-07-16 Florida 12 315767 4676
## 7450 2020-07-16 Georgia 13 120848 3043
## 7451 2020-07-16 Guam 66 1283 6
## 7452 2020-07-16 Hawaii 15 1290 21
## 7453 2020-07-16 Idaho 16 13261 114
## 7454 2020-07-16 Illinois 17 159676 7457
## 7455 2020-07-16 Indiana 18 55413 2795
## 7456 2020-07-16 Iowa 19 37414 781
## 7457 2020-07-16 Kansas 20 21273 309
## 7458 2020-07-16 Kentucky 21 21617 675
## 7459 2020-07-16 Louisiana 22 86521 3485
## 7460 2020-07-16 Maine 23 3598 114
## 7461 2020-07-16 Maryland 24 76237 3347
## 7462 2020-07-16 Massachusetts 25 112581 8380
## 7463 2020-07-16 Michigan 26 79977 6351
## 7464 2020-07-16 Minnesota 27 44387 1566
## 7465 2020-07-16 Mississippi 28 39797 1308
## 7466 2020-07-16 Missouri 29 32596 1145
## 7467 2020-07-16 Montana 30 2265 35
## 7468 2020-07-16 Nebraska 31 22178 307
## 7469 2020-07-16 Nevada 32 32024 627
## 7470 2020-07-16 New Hampshire 33 6139 395
## 7471 2020-07-16 New Jersey 34 178475 15665
## 7472 2020-07-16 New Mexico 35 16138 562
## 7473 2020-07-16 New York 36 409476 32133
## 7474 2020-07-16 North Carolina 37 93657 1617
## 7475 2020-07-16 North Dakota 38 4672 93
## 7476 2020-07-16 Northern Mariana Islands 69 37 2
## 7477 2020-07-16 Ohio 39 70601 3103
## 7478 2020-07-16 Oklahoma 40 23441 438
## 7479 2020-07-16 Oregon 41 13541 252
## 7480 2020-07-16 Pennsylvania 42 103169 7039
## 7481 2020-07-16 Puerto Rico 72 10574 172
## 7482 2020-07-16 Rhode Island 44 17711 988
## 7483 2020-07-16 South Carolina 45 64083 1070
## 7484 2020-07-16 South Dakota 46 7694 115
## 7485 2020-07-16 Tennessee 47 69827 786
## 7486 2020-07-16 Texas 48 311516 3744
## 7487 2020-07-16 Utah 49 31908 234
## 7488 2020-07-16 Vermont 50 1325 56
## 7489 2020-07-16 Virgin Islands 78 263 6
## 7490 2020-07-16 Virginia 51 74431 2007
## 7491 2020-07-16 Washington 53 46268 1492
## 7492 2020-07-16 West Virginia 54 4657 99
## 7493 2020-07-16 Wisconsin 55 43361 839
## 7494 2020-07-16 Wyoming 56 2026 24
## 7495 2020-07-17 Alabama 1 63091 1265
## 7496 2020-07-17 Alaska 2 2083 15
## 7497 2020-07-17 Arizona 4 138575 2597
## 7498 2020-07-17 Arkansas 5 31762 353
## 7499 2020-07-17 California 6 374922 7607
## 7500 2020-07-17 Colorado 8 39409 1753
## 7501 2020-07-17 Connecticut 9 47893 4396
## 7502 2020-07-17 Delaware 10 13337 521
## 7503 2020-07-17 District of Columbia 11 11115 577
## 7504 2020-07-17 Florida 12 327233 4804
## 7505 2020-07-17 Georgia 13 124267 3071
## 7506 2020-07-17 Guam 66 1283 6
## 7507 2020-07-17 Hawaii 15 1312 22
## 7508 2020-07-17 Idaho 16 13879 119
## 7509 2020-07-17 Illinois 17 161042 7468
## 7510 2020-07-17 Indiana 18 56160 2803
## 7511 2020-07-17 Iowa 19 37903 785
## 7512 2020-07-17 Kansas 20 22199 310
## 7513 2020-07-17 Kentucky 21 22162 687
## 7514 2020-07-17 Louisiana 22 88700 3509
## 7515 2020-07-17 Maine 23 3636 115
## 7516 2020-07-17 Maryland 24 76941 3359
## 7517 2020-07-17 Massachusetts 25 112879 8402
## 7518 2020-07-17 Michigan 26 80752 6358
## 7519 2020-07-17 Minnesota 27 45053 1573
## 7520 2020-07-17 Mississippi 28 40829 1332
## 7521 2020-07-17 Missouri 29 33536 1151
## 7522 2020-07-17 Montana 30 2383 37
## 7523 2020-07-17 Nebraska 31 22361 308
## 7524 2020-07-17 Nevada 32 33372 638
## 7525 2020-07-17 New Hampshire 33 6165 395
## 7526 2020-07-17 New Jersey 34 178525 15684
## 7527 2020-07-17 New Mexico 35 16456 565
## 7528 2020-07-17 New York 36 410254 32147
## 7529 2020-07-17 North Carolina 37 95633 1638
## 7530 2020-07-17 North Dakota 38 4796 94
## 7531 2020-07-17 Northern Mariana Islands 69 37 2
## 7532 2020-07-17 Ohio 39 72280 3112
## 7533 2020-07-17 Oklahoma 40 24140 445
## 7534 2020-07-17 Oregon 41 13842 256
## 7535 2020-07-17 Pennsylvania 42 104172 7057
## 7536 2020-07-17 Puerto Rico 72 11120 177
## 7537 2020-07-17 Rhode Island 44 17793 990
## 7538 2020-07-17 South Carolina 45 66060 1096
## 7539 2020-07-17 South Dakota 46 7789 116
## 7540 2020-07-17 Tennessee 47 72072 805
## 7541 2020-07-17 Texas 48 321254 3889
## 7542 2020-07-17 Utah 49 32572 238
## 7543 2020-07-17 Vermont 50 1334 56
## 7544 2020-07-17 Virgin Islands 78 283 6
## 7545 2020-07-17 Virginia 51 75433 2013
## 7546 2020-07-17 Washington 53 47226 1498
## 7547 2020-07-17 West Virginia 54 4783 100
## 7548 2020-07-17 Wisconsin 55 44243 842
## 7549 2020-07-17 Wyoming 56 2069 24
## 7550 2020-07-18 Alabama 1 65234 1286
## 7551 2020-07-18 Alaska 2 2157 16
## 7552 2020-07-18 Arizona 4 141333 2733
## 7553 2020-07-18 Arkansas 5 32533 357
## 7554 2020-07-18 California 6 383194 7697
## 7555 2020-07-18 Colorado 8 39811 1753
## 7556 2020-07-18 Connecticut 9 47893 4396
## 7557 2020-07-18 Delaware 10 13429 523
## 7558 2020-07-18 District of Columbia 11 11194 578
## 7559 2020-07-18 Florida 12 337561 4894
## 7560 2020-07-18 Georgia 13 128341 3105
## 7561 2020-07-18 Guam 66 1284 6
## 7562 2020-07-18 Hawaii 15 1332 23
## 7563 2020-07-18 Idaho 16 14433 120
## 7564 2020-07-18 Illinois 17 162299 7486
## 7565 2020-07-18 Indiana 18 57045 2820
## 7566 2020-07-18 Iowa 19 38314 790
## 7567 2020-07-18 Kansas 20 22238 312
## 7568 2020-07-18 Kentucky 21 22750 688
## 7569 2020-07-18 Louisiana 22 88700 3509
## 7570 2020-07-18 Maine 23 3646 117
## 7571 2020-07-18 Maryland 24 77773 3368
## 7572 2020-07-18 Massachusetts 25 113238 8419
## 7573 2020-07-18 Michigan 26 81384 6367
## 7574 2020-07-18 Minnesota 27 45510 1578
## 7575 2020-07-18 Mississippi 28 41846 1346
## 7576 2020-07-18 Missouri 29 34363 1158
## 7577 2020-07-18 Montana 30 2471 37
## 7578 2020-07-18 Nebraska 31 22545 308
## 7579 2020-07-18 Nevada 32 34606 647
## 7580 2020-07-18 New Hampshire 33 6188 396
## 7581 2020-07-18 New Jersey 34 178788 15699
## 7582 2020-07-18 New Mexico 35 16736 569
## 7583 2020-07-18 New York 36 411006 32167
## 7584 2020-07-18 North Carolina 37 98067 1653
## 7585 2020-07-18 North Dakota 38 4911 94
## 7586 2020-07-18 Northern Mariana Islands 69 37 2
## 7587 2020-07-18 Ohio 39 73822 3132
## 7588 2020-07-18 Oklahoma 40 25056 451
## 7589 2020-07-18 Oregon 41 14231 259
## 7590 2020-07-18 Pennsylvania 42 104780 7068
## 7591 2020-07-18 Puerto Rico 72 11453 178
## 7592 2020-07-18 Rhode Island 44 17793 990
## 7593 2020-07-18 South Carolina 45 67612 1135
## 7594 2020-07-18 South Dakota 46 7862 116
## 7595 2020-07-18 Tennessee 47 74518 828
## 7596 2020-07-18 Texas 48 330059 3972
## 7597 2020-07-18 Utah 49 33430 243
## 7598 2020-07-18 Vermont 50 1338 56
## 7599 2020-07-18 Virgin Islands 78 297 6
## 7600 2020-07-18 Virginia 51 76373 2025
## 7601 2020-07-18 Washington 53 47889 1509
## 7602 2020-07-18 West Virginia 54 4922 100
## 7603 2020-07-18 Wisconsin 55 45118 852
## 7604 2020-07-18 Wyoming 56 2108 24
## 7605 2020-07-19 Alabama 1 67011 1287
## 7606 2020-07-19 Alaska 2 2275 16
## 7607 2020-07-19 Arizona 4 143644 2768
## 7608 2020-07-19 Arkansas 5 33228 357
## 7609 2020-07-19 California 6 391460 7710
## 7610 2020-07-19 Colorado 8 40182 1753
## 7611 2020-07-19 Connecticut 9 47893 4396
## 7612 2020-07-19 Delaware 10 13519 523
## 7613 2020-07-19 District of Columbia 11 11261 578
## 7614 2020-07-19 Florida 12 350039 4981
## 7615 2020-07-19 Georgia 13 130794 3110
## 7616 2020-07-19 Guam 66 1284 6
## 7617 2020-07-19 Hawaii 15 1359 23
## 7618 2020-07-19 Idaho 16 14960 120
## 7619 2020-07-19 Illinois 17 163284 7491
## 7620 2020-07-19 Indiana 18 57965 2822
## 7621 2020-07-19 Iowa 19 38813 793
## 7622 2020-07-19 Kansas 20 22459 313
## 7623 2020-07-19 Kentucky 21 23600 691
## 7624 2020-07-19 Louisiana 22 91816 3543
## 7625 2020-07-19 Maine 23 3687 117
## 7626 2020-07-19 Maryland 24 78698 3377
## 7627 2020-07-19 Massachusetts 25 113534 8431
## 7628 2020-07-19 Michigan 26 81935 6369
## 7629 2020-07-19 Minnesota 27 46244 1581
## 7630 2020-07-19 Mississippi 28 42638 1355
## 7631 2020-07-19 Missouri 29 35154 1158
## 7632 2020-07-19 Montana 30 2533 37
## 7633 2020-07-19 Nebraska 31 22637 308
## 7634 2020-07-19 Nevada 32 35826 648
## 7635 2020-07-19 New Hampshire 33 6203 398
## 7636 2020-07-19 New Jersey 34 178757 15706
## 7637 2020-07-19 New Mexico 35 16971 571
## 7638 2020-07-19 New York 36 411515 32187
## 7639 2020-07-19 North Carolina 37 99841 1661
## 7640 2020-07-19 North Dakota 38 5023 96
## 7641 2020-07-19 Northern Mariana Islands 69 37 2
## 7642 2020-07-19 Ohio 39 74932 3174
## 7643 2020-07-19 Oklahoma 40 25265 451
## 7644 2020-07-19 Oregon 41 14586 262
## 7645 2020-07-19 Pennsylvania 42 105384 7074
## 7646 2020-07-19 Puerto Rico 72 12063 178
## 7647 2020-07-19 Rhode Island 44 17793 990
## 7648 2020-07-19 South Carolina 45 69986 1155
## 7649 2020-07-19 South Dakota 46 7906 118
## 7650 2020-07-19 Tennessee 47 76180 834
## 7651 2020-07-19 Texas 48 338036 4033
## 7652 2020-07-19 Utah 49 34117 243
## 7653 2020-07-19 Vermont 50 1350 56
## 7654 2020-07-19 Virgin Islands 78 297 6
## 7655 2020-07-19 Virginia 51 77430 2027
## 7656 2020-07-19 Washington 53 48601 1512
## 7657 2020-07-19 West Virginia 54 5042 100
## 7658 2020-07-19 Wisconsin 55 45953 853
## 7659 2020-07-19 Wyoming 56 2126 24
## 7660 2020-07-20 Alabama 1 68891 1291
## 7661 2020-07-20 Alaska 2 2412 16
## 7662 2020-07-20 Arizona 4 145320 2795
## 7663 2020-07-20 Arkansas 5 33927 363
## 7664 2020-07-20 California 6 400195 7764
## 7665 2020-07-20 Colorado 8 40649 1759
## 7666 2020-07-20 Connecticut 9 48055 4406
## 7667 2020-07-20 Delaware 10 13624 523
## 7668 2020-07-20 District of Columbia 11 11339 579
## 7669 2020-07-20 Florida 12 360386 5071
## 7670 2020-07-20 Georgia 13 132788 3113
## 7671 2020-07-20 Guam 66 1288 6
## 7672 2020-07-20 Hawaii 15 1371 23
## 7673 2020-07-20 Idaho 16 15380 123
## 7674 2020-07-20 Illinois 17 164552 7500
## 7675 2020-07-20 Indiana 18 58607 2825
## 7676 2020-07-20 Iowa 19 39343 798
## 7677 2020-07-20 Kansas 20 23544 318
## 7678 2020-07-20 Kentucky 21 23978 694
## 7679 2020-07-20 Louisiana 22 95002 3572
## 7680 2020-07-20 Maine 23 3711 117
## 7681 2020-07-20 Maryland 24 79251 3382
## 7682 2020-07-20 Massachusetts 25 113789 8433
## 7683 2020-07-20 Michigan 26 82486 6377
## 7684 2020-07-20 Minnesota 27 47147 1585
## 7685 2020-07-20 Mississippi 28 43889 1358
## 7686 2020-07-20 Missouri 29 36044 1164
## 7687 2020-07-20 Montana 30 2640 39
## 7688 2020-07-20 Nebraska 31 22847 313
## 7689 2020-07-20 Nevada 32 36805 650
## 7690 2020-07-20 New Hampshire 33 6249 398
## 7691 2020-07-20 New Jersey 34 178937 15715
## 7692 2020-07-20 New Mexico 35 17215 578
## 7693 2020-07-20 New York 36 412034 32203
## 7694 2020-07-20 North Carolina 37 101176 1676
## 7695 2020-07-20 North Dakota 38 5130 97
## 7696 2020-07-20 Northern Mariana Islands 69 37 2
## 7697 2020-07-20 Ohio 39 76168 3189
## 7698 2020-07-20 Oklahoma 40 25433 452
## 7699 2020-07-20 Oregon 41 14907 264
## 7700 2020-07-20 Pennsylvania 42 106498 7076
## 7701 2020-07-20 Puerto Rico 72 12461 180
## 7702 2020-07-20 Rhode Island 44 17904 995
## 7703 2020-07-20 South Carolina 45 71445 1164
## 7704 2020-07-20 South Dakota 46 7943 118
## 7705 2020-07-20 Tennessee 47 77944 838
## 7706 2020-07-20 Texas 48 345672 4160
## 7707 2020-07-20 Utah 49 34526 249
## 7708 2020-07-20 Vermont 50 1360 56
## 7709 2020-07-20 Virgin Islands 78 308 6
## 7710 2020-07-20 Virginia 51 78375 2031
## 7711 2020-07-20 Washington 53 49949 1521
## 7712 2020-07-20 West Virginia 54 5142 100
## 7713 2020-07-20 Wisconsin 55 46754 855
## 7714 2020-07-20 Wyoming 56 2187 24
## 7715 2020-07-21 Alabama 1 70358 1303
## 7716 2020-07-21 Alaska 2 2523 16
## 7717 2020-07-21 Arizona 4 148730 2918
## 7718 2020-07-21 Arkansas 5 34655 374
## 7719 2020-07-21 California 6 410366 7883
## 7720 2020-07-21 Colorado 8 41152 1764
## 7721 2020-07-21 Connecticut 9 48096 4406
## 7722 2020-07-21 Delaware 10 13746 525
## 7723 2020-07-21 District of Columbia 11 11427 580
## 7724 2020-07-21 Florida 12 369826 5205
## 7725 2020-07-21 Georgia 13 135865 3186
## 7726 2020-07-21 Guam 66 1296 6
## 7727 2020-07-21 Hawaii 15 1396 23
## 7728 2020-07-21 Idaho 16 15899 127
## 7729 2020-07-21 Illinois 17 165534 7521
## 7730 2020-07-21 Indiana 18 59344 2846
## 7731 2020-07-21 Iowa 19 39721 808
## 7732 2020-07-21 Kansas 20 23606 319
## 7733 2020-07-21 Kentucky 21 24638 695
## 7734 2020-07-21 Louisiana 22 96693 3608
## 7735 2020-07-21 Maine 23 3723 118
## 7736 2020-07-21 Maryland 24 80111 3402
## 7737 2020-07-21 Massachusetts 25 114033 8450
## 7738 2020-07-21 Michigan 26 83184 6385
## 7739 2020-07-21 Minnesota 27 47497 1588
## 7740 2020-07-21 Mississippi 28 45524 1389
## 7741 2020-07-21 Missouri 29 37248 1175
## 7742 2020-07-21 Montana 30 2741 40
## 7743 2020-07-21 Nebraska 31 23190 313
## 7744 2020-07-21 Nevada 32 37605 680
## 7745 2020-07-21 New Hampshire 33 6262 400
## 7746 2020-07-21 New Jersey 34 179230 15737
## 7747 2020-07-21 New Mexico 35 17517 588
## 7748 2020-07-21 New York 36 412889 32218
## 7749 2020-07-21 North Carolina 37 103047 1702
## 7750 2020-07-21 North Dakota 38 5211 98
## 7751 2020-07-21 Northern Mariana Islands 69 38 2
## 7752 2020-07-21 Ohio 39 77215 3219
## 7753 2020-07-21 Oklahoma 40 26326 461
## 7754 2020-07-21 Oregon 41 15257 272
## 7755 2020-07-21 Pennsylvania 42 107460 7094
## 7756 2020-07-21 Puerto Rico 72 12940 180
## 7757 2020-07-21 Rhode Island 44 17986 996
## 7758 2020-07-21 South Carolina 45 73337 1221
## 7759 2020-07-21 South Dakota 46 8019 118
## 7760 2020-07-21 Tennessee 47 80026 863
## 7761 2020-07-21 Texas 48 355594 4319
## 7762 2020-07-21 Utah 49 35089 255
## 7763 2020-07-21 Vermont 50 1366 56
## 7764 2020-07-21 Virgin Islands 78 308 6
## 7765 2020-07-21 Virginia 51 79371 2048
## 7766 2020-07-21 Washington 53 50746 1531
## 7767 2020-07-21 West Virginia 54 5199 101
## 7768 2020-07-21 Wisconsin 55 47893 868
## 7769 2020-07-21 Wyoming 56 2238 25
## 7770 2020-07-22 Alabama 1 71813 1364
## 7771 2020-07-22 Alaska 2 2617 17
## 7772 2020-07-22 Arizona 4 150659 2976
## 7773 2020-07-22 Arkansas 5 35246 380
## 7774 2020-07-22 California 6 422528 8038
## 7775 2020-07-22 Colorado 8 41747 1772
## 7776 2020-07-22 Connecticut 9 48223 4406
## 7777 2020-07-22 Delaware 10 13792 527
## 7778 2020-07-22 District of Columbia 11 11529 580
## 7779 2020-07-22 Florida 12 379611 5344
## 7780 2020-07-22 Georgia 13 139120 3264
## 7781 2020-07-22 Guam 66 1299 6
## 7782 2020-07-22 Hawaii 15 1413 24
## 7783 2020-07-22 Idaho 16 16395 136
## 7784 2020-07-22 Illinois 17 167142 7544
## 7785 2020-07-22 Indiana 18 60126 2863
## 7786 2020-07-22 Iowa 19 40208 814
## 7787 2020-07-22 Kansas 20 24376 324
## 7788 2020-07-22 Kentucky 21 25169 700
## 7789 2020-07-22 Louisiana 22 99466 3670
## 7790 2020-07-22 Maine 23 3723 118
## 7791 2020-07-22 Maryland 24 80738 3405
## 7792 2020-07-22 Massachusetts 25 114320 8468
## 7793 2020-07-22 Michigan 26 83891 6391
## 7794 2020-07-22 Minnesota 27 48001 1592
## 7795 2020-07-22 Mississippi 28 47071 1423
## 7796 2020-07-22 Missouri 29 38454 1196
## 7797 2020-07-22 Montana 30 2840 42
## 7798 2020-07-22 Nebraska 31 23486 314
## 7799 2020-07-22 Nevada 32 38759 705
## 7800 2020-07-22 New Hampshire 33 6295 402
## 7801 2020-07-22 New Jersey 34 179565 15707
## 7802 2020-07-22 New Mexico 35 17828 591
## 7803 2020-07-22 New York 36 413595 32228
## 7804 2020-07-22 North Carolina 37 105138 1729
## 7805 2020-07-22 North Dakota 38 5371 100
## 7806 2020-07-22 Northern Mariana Islands 69 38 2
## 7807 2020-07-22 Ohio 39 78742 3235
## 7808 2020-07-22 Oklahoma 40 27301 474
## 7809 2020-07-22 Oregon 41 15436 274
## 7810 2020-07-22 Pennsylvania 42 108267 7125
## 7811 2020-07-22 Puerto Rico 72 13038 185
## 7812 2020-07-22 Rhode Island 44 18062 997
## 7813 2020-07-22 South Carolina 45 75042 1285
## 7814 2020-07-22 South Dakota 46 8077 119
## 7815 2020-07-22 Tennessee 47 82172 878
## 7816 2020-07-22 Texas 48 366561 4522
## 7817 2020-07-22 Utah 49 35677 262
## 7818 2020-07-22 Vermont 50 1366 56
## 7819 2020-07-22 Virgin Islands 78 336 7
## 7820 2020-07-22 Virginia 51 80393 2051
## 7821 2020-07-22 Washington 53 51442 1534
## 7822 2020-07-22 West Virginia 54 5461 102
## 7823 2020-07-22 Wisconsin 55 48777 874
## 7824 2020-07-22 Wyoming 56 2288 25
## 7825 2020-07-23 Alabama 1 74212 1397
## 7826 2020-07-23 Alaska 2 2682 17
## 7827 2020-07-23 Arizona 4 153029 3067
## 7828 2020-07-23 Arkansas 5 36259 386
## 7829 2020-07-23 California 6 433175 8190
## 7830 2020-07-23 Colorado 8 42409 1788
## 7831 2020-07-23 Connecticut 9 48232 4410
## 7832 2020-07-23 Delaware 10 13924 529
## 7833 2020-07-23 District of Columbia 11 11571 581
## 7834 2020-07-23 Florida 12 389860 5517
## 7835 2020-07-23 Georgia 13 143857 3288
## 7836 2020-07-23 Guam 66 1301 6
## 7837 2020-07-23 Hawaii 15 1468 25
## 7838 2020-07-23 Idaho 16 16862 142
## 7839 2020-07-23 Illinois 17 168766 7563
## 7840 2020-07-23 Indiana 18 61079 2880
## 7841 2020-07-23 Iowa 19 40796 820
## 7842 2020-07-23 Kansas 20 24518 326
## 7843 2020-07-23 Kentucky 21 25828 706
## 7844 2020-07-23 Louisiana 22 101762 3686
## 7845 2020-07-23 Maine 23 3737 118
## 7846 2020-07-23 Maryland 24 81396 3409
## 7847 2020-07-23 Massachusetts 25 114647 8484
## 7848 2020-07-23 Michigan 26 84585 6397
## 7849 2020-07-23 Minnesota 27 48761 1601
## 7850 2020-07-23 Mississippi 28 48053 1436
## 7851 2020-07-23 Missouri 29 39923 1212
## 7852 2020-07-23 Montana 30 2924 43
## 7853 2020-07-23 Nebraska 31 23818 318
## 7854 2020-07-23 Nevada 32 40088 709
## 7855 2020-07-23 New Hampshire 33 6318 405
## 7856 2020-07-23 New Jersey 34 179807 15730
## 7857 2020-07-23 New Mexico 35 18163 596
## 7858 2020-07-23 New York 36 414405 32270
## 7859 2020-07-23 North Carolina 37 107050 1754
## 7860 2020-07-23 North Dakota 38 5497 101
## 7861 2020-07-23 Northern Mariana Islands 69 38 2
## 7862 2020-07-23 Ohio 39 80186 3256
## 7863 2020-07-23 Oklahoma 40 27969 477
## 7864 2020-07-23 Oregon 41 15765 277
## 7865 2020-07-23 Pennsylvania 42 109153 7142
## 7866 2020-07-23 Puerto Rico 72 13473 188
## 7867 2020-07-23 Rhode Island 44 18148 1001
## 7868 2020-07-23 South Carolina 45 76606 1334
## 7869 2020-07-23 South Dakota 46 8143 121
## 7870 2020-07-23 Tennessee 47 84652 913
## 7871 2020-07-23 Texas 48 376104 4714
## 7872 2020-07-23 Utah 49 36178 271
## 7873 2020-07-23 Vermont 50 1377 56
## 7874 2020-07-23 Virgin Islands 78 342 7
## 7875 2020-07-23 Virginia 51 81237 2054
## 7876 2020-07-23 Washington 53 52255 1548
## 7877 2020-07-23 West Virginia 54 5550 103
## 7878 2020-07-23 Wisconsin 55 49751 887
## 7879 2020-07-23 Wyoming 56 2347 25
## 7880 2020-07-24 Alabama 1 76005 1438
## 7881 2020-07-24 Alaska 2 2746 17
## 7882 2020-07-24 Arizona 4 156392 3156
## 7883 2020-07-24 Arkansas 5 37249 394
## 7884 2020-07-24 California 6 443096 8325
## 7885 2020-07-24 Colorado 8 43098 1791
## 7886 2020-07-24 Connecticut 9 48776 4413
## 7887 2020-07-24 Delaware 10 14202 578
## 7888 2020-07-24 District of Columbia 11 11649 581
## 7889 2020-07-24 Florida 12 402304 5652
## 7890 2020-07-24 Georgia 13 147732 3368
## 7891 2020-07-24 Guam 66 1306 6
## 7892 2020-07-24 Hawaii 15 1526 25
## 7893 2020-07-24 Idaho 16 17411 148
## 7894 2020-07-24 Illinois 17 170376 7580
## 7895 2020-07-24 Indiana 18 62081 2884
## 7896 2020-07-24 Iowa 19 41434 826
## 7897 2020-07-24 Kansas 20 25403 330
## 7898 2020-07-24 Kentucky 21 26628 715
## 7899 2020-07-24 Louisiana 22 103846 3715
## 7900 2020-07-24 Maine 23 3757 118
## 7901 2020-07-24 Maryland 24 82326 3422
## 7902 2020-07-24 Massachusetts 25 114985 8498
## 7903 2020-07-24 Michigan 26 85238 6402
## 7904 2020-07-24 Minnesota 27 49528 1606
## 7905 2020-07-24 Mississippi 28 49663 1463
## 7906 2020-07-24 Missouri 29 41224 1221
## 7907 2020-07-24 Montana 30 3113 46
## 7908 2020-07-24 Nebraska 31 24174 322
## 7909 2020-07-24 Nevada 32 41013 722
## 7910 2020-07-24 New Hampshire 33 6375 407
## 7911 2020-07-24 New Jersey 34 180265 15765
## 7912 2020-07-24 New Mexico 35 18475 601
## 7913 2020-07-24 New York 36 415163 32278
## 7914 2020-07-24 North Carolina 37 109206 1769
## 7915 2020-07-24 North Dakota 38 5618 103
## 7916 2020-07-24 Northern Mariana Islands 69 38 2
## 7917 2020-07-24 Ohio 39 81746 3297
## 7918 2020-07-24 Oklahoma 40 29116 484
## 7919 2020-07-24 Oregon 41 16172 285
## 7920 2020-07-24 Pennsylvania 42 110342 7162
## 7921 2020-07-24 Puerto Rico 72 13967 191
## 7922 2020-07-24 Rhode Island 44 18224 1002
## 7923 2020-07-24 South Carolina 45 78607 1385
## 7924 2020-07-24 South Dakota 46 8200 122
## 7925 2020-07-24 Tennessee 47 86667 926
## 7926 2020-07-24 Texas 48 383662 4876
## 7927 2020-07-24 Utah 49 37063 277
## 7928 2020-07-24 Vermont 50 1385 56
## 7929 2020-07-24 Virgin Islands 78 352 7
## 7930 2020-07-24 Virginia 51 82364 2067
## 7931 2020-07-24 Washington 53 53278 1590
## 7932 2020-07-24 West Virginia 54 5695 103
## 7933 2020-07-24 Wisconsin 55 50895 887
## 7934 2020-07-24 Wyoming 56 2405 25
## 7935 2020-07-25 Alabama 1 78130 1456
## 7936 2020-07-25 Alaska 2 2866 18
## 7937 2020-07-25 Arizona 4 160055 3288
## 7938 2020-07-25 Arkansas 5 37981 399
## 7939 2020-07-25 California 6 453327 8428
## 7940 2020-07-25 Colorado 8 43847 1795
## 7941 2020-07-25 Connecticut 9 48776 4413
## 7942 2020-07-25 Delaware 10 14175 579
## 7943 2020-07-25 District of Columbia 11 11717 581
## 7944 2020-07-25 Florida 12 414503 5776
## 7945 2020-07-25 Georgia 13 151262 3421
## 7946 2020-07-25 Guam 66 1306 6
## 7947 2020-07-25 Hawaii 15 1597 25
## 7948 2020-07-25 Idaho 16 17920 150
## 7949 2020-07-25 Illinois 17 171669 7593
## 7950 2020-07-25 Indiana 18 63030 2895
## 7951 2020-07-25 Iowa 19 41886 826
## 7952 2020-07-25 Kansas 20 25464 333
## 7953 2020-07-25 Kentucky 21 27395 717
## 7954 2020-07-25 Louisiana 22 103846 3715
## 7955 2020-07-25 Maine 23 3790 119
## 7956 2020-07-25 Maryland 24 83617 3433
## 7957 2020-07-25 Massachusetts 25 115268 8510
## 7958 2020-07-25 Michigan 26 85665 6402
## 7959 2020-07-25 Minnesota 27 50331 1611
## 7960 2020-07-25 Mississippi 28 51097 1480
## 7961 2020-07-25 Missouri 29 42310 1224
## 7962 2020-07-25 Montana 30 3260 46
## 7963 2020-07-25 Nebraska 31 24412 322
## 7964 2020-07-25 Nevada 32 41993 733
## 7965 2020-07-25 New Hampshire 33 6415 409
## 7966 2020-07-25 New Jersey 34 180778 15776
## 7967 2020-07-25 New Mexico 35 18788 607
## 7968 2020-07-25 New York 36 415911 32295
## 7969 2020-07-25 North Carolina 37 111282 1801
## 7970 2020-07-25 North Dakota 38 5740 103
## 7971 2020-07-25 Northern Mariana Islands 69 40 2
## 7972 2020-07-25 Ohio 39 83184 3297
## 7973 2020-07-25 Oklahoma 40 30081 496
## 7974 2020-07-25 Oregon 41 16492 286
## 7975 2020-07-25 Pennsylvania 42 111121 7167
## 7976 2020-07-25 Puerto Rico 72 14540 201
## 7977 2020-07-25 Rhode Island 44 18224 1002
## 7978 2020-07-25 South Carolina 45 80008 1465
## 7979 2020-07-25 South Dakota 46 8305 122
## 7980 2020-07-25 Tennessee 47 88459 953
## 7981 2020-07-25 Texas 48 391609 5002
## 7982 2020-07-25 Utah 49 37623 278
## 7983 2020-07-25 Vermont 50 1396 56
## 7984 2020-07-25 Virgin Islands 78 352 7
## 7985 2020-07-25 Virginia 51 83609 2075
## 7986 2020-07-25 Washington 53 53883 1591
## 7987 2020-07-25 West Virginia 54 5821 103
## 7988 2020-07-25 Wisconsin 55 51735 900
## 7989 2020-07-25 Wyoming 56 2446 25
## 7990 2020-07-26 Alabama 1 79294 1473
## 7991 2020-07-26 Alaska 2 3100 18
## 7992 2020-07-26 Arizona 4 162041 3313
## 7993 2020-07-26 Arkansas 5 38623 401
## 7994 2020-07-26 California 6 459338 8451
## 7995 2020-07-26 Colorado 8 44364 1795
## 7996 2020-07-26 Connecticut 9 48776 4413
## 7997 2020-07-26 Delaware 10 14290 579
## 7998 2020-07-26 District of Columbia 11 11780 581
## 7999 2020-07-26 Florida 12 423847 5853
## 8000 2020-07-26 Georgia 13 153476 3424
## 8001 2020-07-26 Guam 66 1306 6
## 8002 2020-07-26 Hawaii 15 1660 25
## 8003 2020-07-26 Idaho 16 18262 150
## 8004 2020-07-26 Illinois 17 173079 7595
## 8005 2020-07-26 Indiana 18 63881 2903
## 8006 2020-07-26 Iowa 19 42357 829
## 8007 2020-07-26 Kansas 20 25649 335
## 8008 2020-07-26 Kentucky 21 27682 718
## 8009 2020-07-26 Louisiana 22 107686 3763
## 8010 2020-07-26 Maine 23 3814 119
## 8011 2020-07-26 Maryland 24 84306 3440
## 8012 2020-07-26 Massachusetts 25 115637 8529
## 8013 2020-07-26 Michigan 26 86750 6402
## 8014 2020-07-26 Minnesota 27 51193 1614
## 8015 2020-07-26 Mississippi 28 52304 1495
## 8016 2020-07-26 Missouri 29 43477 1231
## 8017 2020-07-26 Montana 30 3342 46
## 8018 2020-07-26 Nebraska 31 24618 322
## 8019 2020-07-26 Nevada 32 42919 734
## 8020 2020-07-26 New Hampshire 33 6436 409
## 8021 2020-07-26 New Jersey 34 181283 15787
## 8022 2020-07-26 New Mexico 35 19053 614
## 8023 2020-07-26 New York 36 416443 32305
## 8024 2020-07-26 North Carolina 37 112802 1807
## 8025 2020-07-26 North Dakota 38 5880 103
## 8026 2020-07-26 Northern Mariana Islands 69 40 2
## 8027 2020-07-26 Ohio 39 84073 3307
## 8028 2020-07-26 Oklahoma 40 31285 496
## 8029 2020-07-26 Oregon 41 16764 291
## 8030 2020-07-26 Pennsylvania 42 111773 7170
## 8031 2020-07-26 Puerto Rico 72 15143 201
## 8032 2020-07-26 Rhode Island 44 18224 1002
## 8033 2020-07-26 South Carolina 45 81199 1491
## 8034 2020-07-26 South Dakota 46 8395 123
## 8035 2020-07-26 Tennessee 47 91330 955
## 8036 2020-07-26 Texas 48 395738 5090
## 8037 2020-07-26 Utah 49 37973 278
## 8038 2020-07-26 Vermont 50 1400 56
## 8039 2020-07-26 Virgin Islands 78 361 7
## 8040 2020-07-26 Virginia 51 84567 2078
## 8041 2020-07-26 Washington 53 54421 1595
## 8042 2020-07-26 West Virginia 54 5960 103
## 8043 2020-07-26 Wisconsin 55 52685 901
## 8044 2020-07-26 Wyoming 56 2475 25
## 8045 2020-07-27 Alabama 1 81115 1491
## 8046 2020-07-27 Alaska 2 3204 19
## 8047 2020-07-27 Arizona 4 163918 3320
## 8048 2020-07-27 Arkansas 5 39447 408
## 8049 2020-07-27 California 6 467103 8544
## 8050 2020-07-27 Colorado 8 44723 1800
## 8051 2020-07-27 Connecticut 9 48983 4418
## 8052 2020-07-27 Delaware 10 14406 579
## 8053 2020-07-27 District of Columbia 11 11858 582
## 8054 2020-07-27 Florida 12 432739 5930
## 8055 2020-07-27 Georgia 13 155907 3435
## 8056 2020-07-27 Guam 66 1315 6
## 8057 2020-07-27 Hawaii 15 1688 25
## 8058 2020-07-27 Idaho 16 18836 159
## 8059 2020-07-27 Illinois 17 174442 7619
## 8060 2020-07-27 Indiana 18 64417 2906
## 8061 2020-07-27 Iowa 19 42696 836
## 8062 2020-07-27 Kansas 20 26439 338
## 8063 2020-07-27 Kentucky 21 28250 726
## 8064 2020-07-27 Louisiana 22 110029 3786
## 8065 2020-07-27 Maine 23 3832 119
## 8066 2020-07-27 Maryland 24 85436 3447
## 8067 2020-07-27 Massachusetts 25 115926 8536
## 8068 2020-07-27 Michigan 26 87329 6407
## 8069 2020-07-27 Minnesota 27 51843 1616
## 8070 2020-07-27 Mississippi 28 52957 1501
## 8071 2020-07-27 Missouri 29 44813 1245
## 8072 2020-07-27 Montana 30 3406 47
## 8073 2020-07-27 Nebraska 31 24899 322
## 8074 2020-07-27 Nevada 32 43880 739
## 8075 2020-07-27 New Hampshire 33 6441 409
## 8076 2020-07-27 New Jersey 34 181732 15804
## 8077 2020-07-27 New Mexico 35 19502 619
## 8078 2020-07-27 New York 36 417056 32322
## 8079 2020-07-27 North Carolina 37 114612 1815
## 8080 2020-07-27 North Dakota 38 5990 103
## 8081 2020-07-27 Northern Mariana Islands 69 40 2
## 8082 2020-07-27 Ohio 39 85177 3344
## 8083 2020-07-27 Oklahoma 40 32529 495
## 8084 2020-07-27 Oregon 41 17122 289
## 8085 2020-07-27 Pennsylvania 42 112995 7174
## 8086 2020-07-27 Puerto Rico 72 15431 201
## 8087 2020-07-27 Rhode Island 44 18515 1004
## 8088 2020-07-27 South Carolina 45 82417 1506
## 8089 2020-07-27 South Dakota 46 8444 123
## 8090 2020-07-27 Tennessee 47 93869 965
## 8091 2020-07-27 Texas 48 402295 6292
## 8092 2020-07-27 Utah 49 38439 285
## 8093 2020-07-27 Vermont 50 1402 56
## 8094 2020-07-27 Virgin Islands 78 375 7
## 8095 2020-07-27 Virginia 51 86072 2082
## 8096 2020-07-27 Washington 53 55547 1610
## 8097 2020-07-27 West Virginia 54 6054 106
## 8098 2020-07-27 Wisconsin 55 53323 905
## 8099 2020-07-27 Wyoming 56 2520 25
## 8100 2020-07-28 Alabama 1 82366 1491
## 8101 2020-07-28 Alaska 2 3348 20
## 8102 2020-07-28 Arizona 4 165994 3424
## 8103 2020-07-28 Arkansas 5 40181 428
## 8104 2020-07-28 California 6 474951 8716
## 8105 2020-07-28 Colorado 8 45420 1809
## 8106 2020-07-28 Connecticut 9 49077 4423
## 8107 2020-07-28 Delaware 10 14476 580
## 8108 2020-07-28 District of Columbia 11 11945 583
## 8109 2020-07-28 Florida 12 441969 6116
## 8110 2020-07-28 Georgia 13 160038 3488
## 8111 2020-07-28 Guam 66 1318 6
## 8112 2020-07-28 Hawaii 15 1734 25
## 8113 2020-07-28 Idaho 16 19318 168
## 8114 2020-07-28 Illinois 17 175588 7645
## 8115 2020-07-28 Indiana 18 65258 2924
## 8116 2020-07-28 Iowa 19 42928 839
## 8117 2020-07-28 Kansas 20 26494 344
## 8118 2020-07-28 Kentucky 21 28876 735
## 8119 2020-07-28 Louisiana 22 111150 3812
## 8120 2020-07-28 Maine 23 3838 121
## 8121 2020-07-28 Maryland 24 86091 3458
## 8122 2020-07-28 Massachusetts 25 116182 8551
## 8123 2020-07-28 Michigan 26 88025 6426
## 8124 2020-07-28 Minnesota 27 52321 1620
## 8125 2020-07-28 Mississippi 28 54299 1543
## 8126 2020-07-28 Missouri 29 46225 1263
## 8127 2020-07-28 Montana 30 3491 52
## 8128 2020-07-28 Nebraska 31 25140 326
## 8129 2020-07-28 Nevada 32 44991 760
## 8130 2020-07-28 New Hampshire 33 6500 409
## 8131 2020-07-28 New Jersey 34 182215 15825
## 8132 2020-07-28 New Mexico 35 19791 626
## 8133 2020-07-28 New York 36 417591 32333
## 8134 2020-07-28 North Carolina 37 116300 1847
## 8135 2020-07-28 North Dakota 38 6145 104
## 8136 2020-07-28 Northern Mariana Islands 69 40 2
## 8137 2020-07-28 Ohio 39 86497 3382
## 8138 2020-07-28 Oklahoma 40 33757 509
## 8139 2020-07-28 Oregon 41 17419 305
## 8140 2020-07-28 Pennsylvania 42 114129 7197
## 8141 2020-07-28 Puerto Rico 72 15840 209
## 8142 2020-07-28 Rhode Island 44 18725 1005
## 8143 2020-07-28 South Carolina 45 84109 1565
## 8144 2020-07-28 South Dakota 46 8492 123
## 8145 2020-07-28 Tennessee 47 96318 988
## 8146 2020-07-28 Texas 48 412849 6518
## 8147 2020-07-28 Utah 49 38877 290
## 8148 2020-07-28 Vermont 50 1405 56
## 8149 2020-07-28 Virgin Islands 78 375 7
## 8150 2020-07-28 Virginia 51 86994 2095
## 8151 2020-07-28 Washington 53 56575 1632
## 8152 2020-07-28 West Virginia 54 6173 111
## 8153 2020-07-28 Wisconsin 55 54114 916
## 8154 2020-07-28 Wyoming 56 2589 26
## 8155 2020-07-29 Alabama 1 83782 1538
## 8156 2020-07-29 Alaska 2 3440 20
## 8157 2020-07-29 Arizona 4 168361 3470
## 8158 2020-07-29 Arkansas 5 40968 434
## 8159 2020-07-29 California 6 486039 8884
## 8160 2020-07-29 Colorado 8 45885 1826
## 8161 2020-07-29 Connecticut 9 49540 4425
## 8162 2020-07-29 Delaware 10 14602 581
## 8163 2020-07-29 District of Columbia 11 11999 584
## 8164 2020-07-29 Florida 12 451415 6332
## 8165 2020-07-29 Georgia 13 163547 3566
## 8166 2020-07-29 Guam 66 1320 6
## 8167 2020-07-29 Hawaii 15 1842 25
## 8168 2020-07-29 Idaho 16 19810 176
## 8169 2020-07-29 Illinois 17 176967 7661
## 8170 2020-07-29 Indiana 18 65918 2932
## 8171 2020-07-29 Iowa 19 43623 854
## 8172 2020-07-29 Kansas 20 27177 349
## 8173 2020-07-29 Kentucky 21 29479 746
## 8174 2020-07-29 Louisiana 22 112887 3883
## 8175 2020-07-29 Maine 23 3866 121
## 8176 2020-07-29 Maryland 24 86846 3478
## 8177 2020-07-29 Massachusetts 25 116684 8580
## 8178 2020-07-29 Michigan 26 89026 6426
## 8179 2020-07-29 Minnesota 27 52987 1629
## 8180 2020-07-29 Mississippi 28 55804 1563
## 8181 2020-07-29 Missouri 29 47683 1269
## 8182 2020-07-29 Montana 30 3695 54
## 8183 2020-07-29 Nebraska 31 25448 331
## 8184 2020-07-29 Nevada 32 45937 782
## 8185 2020-07-29 New Hampshire 33 6513 411
## 8186 2020-07-29 New Jersey 34 182641 15798
## 8187 2020-07-29 New Mexico 35 20136 632
## 8188 2020-07-29 New York 36 418302 32342
## 8189 2020-07-29 North Carolina 37 118027 1889
## 8190 2020-07-29 North Dakota 38 6231 106
## 8191 2020-07-29 Northern Mariana Islands 69 40 2
## 8192 2020-07-29 Ohio 39 87893 3422
## 8193 2020-07-29 Oklahoma 40 34605 523
## 8194 2020-07-29 Oregon 41 17805 313
## 8195 2020-07-29 Pennsylvania 42 114984 7219
## 8196 2020-07-29 Puerto Rico 72 16061 211
## 8197 2020-07-29 Rhode Island 44 18800 1007
## 8198 2020-07-29 South Carolina 45 85846 1615
## 8199 2020-07-29 South Dakota 46 8641 129
## 8200 2020-07-29 Tennessee 47 98145 1008
## 8201 2020-07-29 Texas 48 421891 6834
## 8202 2020-07-29 Utah 49 39339 297
## 8203 2020-07-29 Vermont 50 1406 56
## 8204 2020-07-29 Virgin Islands 78 385 8
## 8205 2020-07-29 Virginia 51 87993 2125
## 8206 2020-07-29 Washington 53 57299 1642
## 8207 2020-07-29 West Virginia 54 6326 112
## 8208 2020-07-29 Wisconsin 55 55119 920
## 8209 2020-07-29 Wyoming 56 2628 26
## 8210 2020-07-30 Alabama 1 85762 1565
## 8211 2020-07-30 Alaska 2 3557 21
## 8212 2020-07-30 Arizona 4 170905 3628
## 8213 2020-07-30 Arkansas 5 41759 442
## 8214 2020-07-30 California 6 494269 9009
## 8215 2020-07-30 Colorado 8 46338 1826
## 8216 2020-07-30 Connecticut 9 49670 4431
## 8217 2020-07-30 Delaware 10 14689 581
## 8218 2020-07-30 District of Columbia 11 12057 584
## 8219 2020-07-30 Florida 12 461371 6585
## 8220 2020-07-30 Georgia 13 167545 3596
## 8221 2020-07-30 Guam 66 1323 6
## 8222 2020-07-30 Hawaii 15 1966 25
## 8223 2020-07-30 Idaho 16 20378 180
## 8224 2020-07-30 Illinois 17 178832 7677
## 8225 2020-07-30 Indiana 18 66883 2946
## 8226 2020-07-30 Iowa 19 44285 865
## 8227 2020-07-30 Kansas 20 27244 357
## 8228 2020-07-30 Kentucky 21 30132 748
## 8229 2020-07-30 Louisiana 22 114595 3925
## 8230 2020-07-30 Maine 23 3888 122
## 8231 2020-07-30 Maryland 24 87740 3488
## 8232 2020-07-30 Massachusetts 25 117098 8595
## 8233 2020-07-30 Michigan 26 89926 6446
## 8234 2020-07-30 Minnesota 27 53732 1634
## 8235 2020-07-30 Mississippi 28 57579 1611
## 8236 2020-07-30 Missouri 29 49671 1288
## 8237 2020-07-30 Montana 30 3829 55
## 8238 2020-07-30 Nebraska 31 25766 333
## 8239 2020-07-30 Nevada 32 47034 805
## 8240 2020-07-30 New Hampshire 33 6544 415
## 8241 2020-07-30 New Jersey 34 182845 15809
## 8242 2020-07-30 New Mexico 35 20388 635
## 8243 2020-07-30 New York 36 419081 32362
## 8244 2020-07-30 North Carolina 37 120391 1929
## 8245 2020-07-30 North Dakota 38 6305 107
## 8246 2020-07-30 Northern Mariana Islands 69 42 2
## 8247 2020-07-30 Ohio 39 89626 3442
## 8248 2020-07-30 Oklahoma 40 35710 536
## 8249 2020-07-30 Oregon 41 18166 318
## 8250 2020-07-30 Pennsylvania 42 115853 7248
## 8251 2020-07-30 Puerto Rico 72 16572 214
## 8252 2020-07-30 Rhode Island 44 18950 1007
## 8253 2020-07-30 South Carolina 45 87572 1667
## 8254 2020-07-30 South Dakota 46 8685 129
## 8255 2020-07-30 Tennessee 47 100166 1022
## 8256 2020-07-30 Texas 48 432134 6987
## 8257 2020-07-30 Utah 49 39714 303
## 8258 2020-07-30 Vermont 50 1407 57
## 8259 2020-07-30 Virgin Islands 78 385 8
## 8260 2020-07-30 Virginia 51 88904 2141
## 8261 2020-07-30 Washington 53 58099 1652
## 8262 2020-07-30 West Virginia 54 6422 115
## 8263 2020-07-30 Wisconsin 55 56111 928
## 8264 2020-07-30 Wyoming 56 2686 26
## 8265 2020-07-31 Alabama 1 87723 1580
## 8266 2020-07-31 Alaska 2 3675 21
## 8267 2020-07-31 Arizona 4 174108 3695
## 8268 2020-07-31 Arkansas 5 42511 453
## 8269 2020-07-31 California 6 502273 9222
## 8270 2020-07-31 Colorado 8 46948 1841
## 8271 2020-07-31 Connecticut 9 49810 4432
## 8272 2020-07-31 Delaware 10 14788 585
## 8273 2020-07-31 District of Columbia 11 12126 585
## 8274 2020-07-31 Florida 12 470378 6842
## 8275 2020-07-31 Georgia 13 171342 3674
## 8276 2020-07-31 Guam 66 1325 6
## 8277 2020-07-31 Hawaii 15 2088 25
## 8278 2020-07-31 Idaho 16 20853 193
## 8279 2020-07-31 Illinois 17 180701 7703
## 8280 2020-07-31 Indiana 18 67800 2965
## 8281 2020-07-31 Iowa 19 44753 872
## 8282 2020-07-31 Kansas 20 28121 358
## 8283 2020-07-31 Kentucky 21 30981 753
## 8284 2020-07-31 Louisiana 22 116394 3949
## 8285 2020-07-31 Maine 23 3912 123
## 8286 2020-07-31 Maryland 24 88907 3493
## 8287 2020-07-31 Massachusetts 25 117612 8609
## 8288 2020-07-31 Michigan 26 90752 6453
## 8289 2020-07-31 Minnesota 27 54503 1640
## 8290 2020-07-31 Mississippi 28 58747 1663
## 8291 2020-07-31 Missouri 29 51074 1305
## 8292 2020-07-31 Montana 30 3977 60
## 8293 2020-07-31 Nebraska 31 26211 338
## 8294 2020-07-31 Nevada 32 48142 831
## 8295 2020-07-31 New Hampshire 33 6583 415
## 8296 2020-07-31 New Jersey 34 183535 15819
## 8297 2020-07-31 New Mexico 35 20600 642
## 8298 2020-07-31 New York 36 419723 32372
## 8299 2020-07-31 North Carolina 37 122370 1947
## 8300 2020-07-31 North Dakota 38 6473 107
## 8301 2020-07-31 Northern Mariana Islands 69 42 2
## 8302 2020-07-31 Ohio 39 91159 3489
## 8303 2020-07-31 Oklahoma 40 36456 541
## 8304 2020-07-31 Oregon 41 18510 325
## 8305 2020-07-31 Pennsylvania 42 116787 7261
## 8306 2020-07-31 Puerto Rico 72 16781 219
## 8307 2020-07-31 Rhode Island 44 19022 1007
## 8308 2020-07-31 South Carolina 45 89016 1712
## 8309 2020-07-31 South Dakota 46 8764 130
## 8310 2020-07-31 Tennessee 47 103144 1047
## 8311 2020-07-31 Texas 48 443090 7273
## 8312 2020-07-31 Utah 49 40258 308
## 8313 2020-07-31 Vermont 50 1414 57
## 8314 2020-07-31 Virgin Islands 78 406 8
## 8315 2020-07-31 Virginia 51 89888 2174
## 8316 2020-07-31 Washington 53 58725 1653
## 8317 2020-07-31 West Virginia 54 6642 116
## 8318 2020-07-31 Wisconsin 55 57020 943
## 8319 2020-07-31 Wyoming 56 2726 26
## 8320 2020-08-01 Alabama 1 89349 1603
## 8321 2020-08-01 Alaska 2 3825 22
## 8322 2020-08-01 Arizona 4 177019 3753
## 8323 2020-08-01 Arkansas 5 43173 458
## 8324 2020-08-01 California 6 509507 9365
## 8325 2020-08-01 Colorado 8 47357 1846
## 8326 2020-08-01 Connecticut 9 49810 4432
## 8327 2020-08-01 Delaware 10 14877 585
## 8328 2020-08-01 District of Columbia 11 12205 585
## 8329 2020-08-01 Florida 12 480020 7021
## 8330 2020-08-01 Georgia 13 174834 3744
## 8331 2020-08-01 Guam 66 1328 6
## 8332 2020-08-01 Hawaii 15 2174 25
## 8333 2020-08-01 Idaho 16 21231 197
## 8334 2020-08-01 Illinois 17 182232 7707
## 8335 2020-08-01 Indiana 18 68773 2971
## 8336 2020-08-01 Iowa 19 45293 874
## 8337 2020-08-01 Kansas 20 28147 358
## 8338 2020-08-01 Kentucky 21 31612 758
## 8339 2020-08-01 Louisiana 22 116394 3949
## 8340 2020-08-01 Maine 23 3937 123
## 8341 2020-08-01 Maryland 24 89925 3506
## 8342 2020-08-01 Massachusetts 25 118040 8626
## 8343 2020-08-01 Michigan 26 91450 6460
## 8344 2020-08-01 Minnesota 27 55228 1646
## 8345 2020-08-01 Mississippi 28 59881 1693
## 8346 2020-08-01 Missouri 29 52012 1311
## 8347 2020-08-01 Montana 30 4081 61
## 8348 2020-08-01 Nebraska 31 26391 338
## 8349 2020-08-01 Nevada 32 49207 832
## 8350 2020-08-01 New Hampshire 33 6613 416
## 8351 2020-08-01 New Jersey 34 183904 15830
## 8352 2020-08-01 New Mexico 35 20796 651
## 8353 2020-08-01 New York 36 420477 32390
## 8354 2020-08-01 North Carolina 37 124015 1989
## 8355 2020-08-01 North Dakota 38 6606 107
## 8356 2020-08-01 Northern Mariana Islands 69 44 2
## 8357 2020-08-01 Ohio 39 92087 3515
## 8358 2020-08-01 Oklahoma 40 37706 549
## 8359 2020-08-01 Oregon 41 18817 329
## 8360 2020-08-01 Pennsylvania 42 117468 7270
## 8361 2020-08-01 Puerto Rico 72 17872 225
## 8362 2020-08-01 Rhode Island 44 19022 1007
## 8363 2020-08-01 South Carolina 45 90599 1751
## 8364 2020-08-01 South Dakota 46 8867 134
## 8365 2020-08-01 Tennessee 47 105455 1056
## 8366 2020-08-01 Texas 48 448224 7477
## 8367 2020-08-01 Utah 49 40754 312
## 8368 2020-08-01 Vermont 50 1421 57
## 8369 2020-08-01 Virgin Islands 78 421 8
## 8370 2020-08-01 Virginia 51 90801 2215
## 8371 2020-08-01 Washington 53 59648 1675
## 8372 2020-08-01 West Virginia 54 6735 116
## 8373 2020-08-01 Wisconsin 55 58064 955
## 8374 2020-08-01 Wyoming 56 2769 26
## 8375 2020-08-02 Alabama 1 91444 1627
## 8376 2020-08-02 Alaska 2 3982 22
## 8377 2020-08-02 Arizona 4 178473 3769
## 8378 2020-08-02 Arkansas 5 43810 464
## 8379 2020-08-02 California 6 515937 9399
## 8380 2020-08-02 Colorado 8 47799 1846
## 8381 2020-08-02 Connecticut 9 49810 4432
## 8382 2020-08-02 Delaware 10 14949 585
## 8383 2020-08-02 District of Columbia 11 12274 586
## 8384 2020-08-02 Florida 12 487124 7083
## 8385 2020-08-02 Georgia 13 177556 3758
## 8386 2020-08-02 Guam 66 1328 6
## 8387 2020-08-02 Hawaii 15 2219 25
## 8388 2020-08-02 Idaho 16 21465 197
## 8389 2020-08-02 Illinois 17 183714 7718
## 8390 2020-08-02 Indiana 18 69531 2975
## 8391 2020-08-02 Iowa 19 45723 878
## 8392 2020-08-02 Kansas 20 28341 361
## 8393 2020-08-02 Kentucky 21 31966 759
## 8394 2020-08-02 Louisiana 22 119861 4007
## 8395 2020-08-02 Maine 23 3958 123
## 8396 2020-08-02 Maryland 24 90835 3515
## 8397 2020-08-02 Massachusetts 25 118458 8638
## 8398 2020-08-02 Michigan 26 91857 6460
## 8399 2020-08-02 Minnesota 27 55987 1654
## 8400 2020-08-02 Mississippi 28 60553 1703
## 8401 2020-08-02 Missouri 29 52577 1311
## 8402 2020-08-02 Montana 30 4193 61
## 8403 2020-08-02 Nebraska 31 26702 338
## 8404 2020-08-02 Nevada 32 50270 833
## 8405 2020-08-02 New Hampshire 33 6634 417
## 8406 2020-08-02 New Jersey 34 184225 15836
## 8407 2020-08-02 New Mexico 35 21016 654
## 8408 2020-08-02 New York 36 421008 32401
## 8409 2020-08-02 North Carolina 37 125281 1996
## 8410 2020-08-02 North Dakota 38 6664 109
## 8411 2020-08-02 Northern Mariana Islands 69 45 2
## 8412 2020-08-02 Ohio 39 93031 3529
## 8413 2020-08-02 Oklahoma 40 38201 550
## 8414 2020-08-02 Oregon 41 19097 331
## 8415 2020-08-02 Pennsylvania 42 118038 7274
## 8416 2020-08-02 Puerto Rico 72 18411 230
## 8417 2020-08-02 Rhode Island 44 19022 1007
## 8418 2020-08-02 South Carolina 45 91788 1777
## 8419 2020-08-02 South Dakota 46 8955 135
## 8420 2020-08-02 Tennessee 47 106804 1062
## 8421 2020-08-02 Texas 48 454759 7520
## 8422 2020-08-02 Utah 49 41175 313
## 8423 2020-08-02 Vermont 50 1426 57
## 8424 2020-08-02 Virgin Islands 78 421 8
## 8425 2020-08-02 Virginia 51 91782 2218
## 8426 2020-08-02 Washington 53 60160 1679
## 8427 2020-08-02 West Virginia 54 6854 117
## 8428 2020-08-02 Wisconsin 55 58990 956
## 8429 2020-08-02 Wyoming 56 2808 26
## 8430 2020-08-03 Alabama 1 92661 1633
## 8431 2020-08-03 Alaska 2 4062 23
## 8432 2020-08-03 Arizona 4 179506 3785
## 8433 2020-08-03 Arkansas 5 44597 475
## 8434 2020-08-03 California 6 522235 9500
## 8435 2020-08-03 Colorado 8 48119 1849
## 8436 2020-08-03 Connecticut 9 50062 4437
## 8437 2020-08-03 Delaware 10 15055 585
## 8438 2020-08-03 District of Columbia 11 12313 586
## 8439 2020-08-03 Florida 12 491876 7156
## 8440 2020-08-03 Georgia 13 179510 3760
## 8441 2020-08-03 Guam 66 1337 6
## 8442 2020-08-03 Hawaii 15 2425 25
## 8443 2020-08-03 Idaho 16 21838 202
## 8444 2020-08-03 Illinois 17 185238 7728
## 8445 2020-08-03 Indiana 18 70111 2980
## 8446 2020-08-03 Iowa 19 45905 884
## 8447 2020-08-03 Kansas 20 29200 366
## 8448 2020-08-03 Kentucky 21 32500 762
## 8449 2020-08-03 Louisiana 22 120960 4024
## 8450 2020-08-03 Maine 23 3970 124
## 8451 2020-08-03 Maryland 24 91705 3523
## 8452 2020-08-03 Massachusetts 25 118657 8648
## 8453 2020-08-03 Michigan 26 92503 6470
## 8454 2020-08-03 Minnesota 27 56600 1656
## 8455 2020-08-03 Mississippi 28 61125 1711
## 8456 2020-08-03 Missouri 29 53676 1316
## 8457 2020-08-03 Montana 30 4249 64
## 8458 2020-08-03 Nebraska 31 26956 334
## 8459 2020-08-03 Nevada 32 51236 847
## 8460 2020-08-03 New Hampshire 33 6660 417
## 8461 2020-08-03 New Jersey 34 184489 15846
## 8462 2020-08-03 New Mexico 35 21130 655
## 8463 2020-08-03 New York 36 421550 32413
## 8464 2020-08-03 North Carolina 37 126748 2013
## 8465 2020-08-03 North Dakota 38 6789 109
## 8466 2020-08-03 Northern Mariana Islands 69 46 2
## 8467 2020-08-03 Ohio 39 93963 3539
## 8468 2020-08-03 Oklahoma 40 38586 551
## 8469 2020-08-03 Oregon 41 19395 334
## 8470 2020-08-03 Pennsylvania 42 118937 7276
## 8471 2020-08-03 Puerto Rico 72 18791 230
## 8472 2020-08-03 Rhode Island 44 19246 1010
## 8473 2020-08-03 South Carolina 45 92951 1793
## 8474 2020-08-03 South Dakota 46 9020 135
## 8475 2020-08-03 Tennessee 47 107900 1078
## 8476 2020-08-03 Texas 48 463541 7697
## 8477 2020-08-03 Utah 49 41571 317
## 8478 2020-08-03 Vermont 50 1427 57
## 8479 2020-08-03 Virgin Islands 78 439 8
## 8480 2020-08-03 Virginia 51 93106 2218
## 8481 2020-08-03 Washington 53 61011 1684
## 8482 2020-08-03 West Virginia 54 6973 117
## 8483 2020-08-03 Wisconsin 55 59471 960
## 8484 2020-08-03 Wyoming 56 2848 27
## 8485 2020-08-04 Alabama 1 93702 1666
## 8486 2020-08-04 Alaska 2 4123 23
## 8487 2020-08-04 Arizona 4 180537 3850
## 8488 2020-08-04 Arkansas 5 45381 490
## 8489 2020-08-04 California 6 527258 9696
## 8490 2020-08-04 Colorado 8 48492 1855
## 8491 2020-08-04 Connecticut 9 50110 4437
## 8492 2020-08-04 Delaware 10 15137 587
## 8493 2020-08-04 District of Columbia 11 12398 587
## 8494 2020-08-04 Florida 12 497322 7401
## 8495 2020-08-04 Georgia 13 182462 3835
## 8496 2020-08-04 Guam 66 1344 6
## 8497 2020-08-04 Hawaii 15 2568 26
## 8498 2020-08-04 Idaho 16 22357 214
## 8499 2020-08-04 Illinois 17 186598 7747
## 8500 2020-08-04 Indiana 18 70944 2996
## 8501 2020-08-04 Iowa 19 46231 888
## 8502 2020-08-04 Kansas 20 29259 367
## 8503 2020-08-04 Kentucky 21 33209 769
## 8504 2020-08-04 Louisiana 22 124575 4051
## 8505 2020-08-04 Maine 23 3975 123
## 8506 2020-08-04 Maryland 24 92416 3530
## 8507 2020-08-04 Massachusetts 25 119203 8657
## 8508 2020-08-04 Michigan 26 93293 6474
## 8509 2020-08-04 Minnesota 27 57202 1660
## 8510 2020-08-04 Mississippi 28 62199 1753
## 8511 2020-08-04 Missouri 29 54890 1330
## 8512 2020-08-04 Montana 30 4360 64
## 8513 2020-08-04 Nebraska 31 27178 339
## 8514 2020-08-04 Nevada 32 52256 862
## 8515 2020-08-04 New Hampshire 33 6693 418
## 8516 2020-08-04 New Jersey 34 184845 15857
## 8517 2020-08-04 New Mexico 35 21340 658
## 8518 2020-08-04 New York 36 422296 32422
## 8519 2020-08-04 North Carolina 37 128236 2038
## 8520 2020-08-04 North Dakota 38 6937 111
## 8521 2020-08-04 Northern Mariana Islands 69 46 2
## 8522 2020-08-04 Ohio 39 95106 3570
## 8523 2020-08-04 Oklahoma 40 39452 566
## 8524 2020-08-04 Oregon 41 19700 336
## 8525 2020-08-04 Pennsylvania 42 119765 7296
## 8526 2020-08-04 Puerto Rico 72 19324 237
## 8527 2020-08-04 Rhode Island 44 19390 1011
## 8528 2020-08-04 South Carolina 45 94190 1847
## 8529 2020-08-04 South Dakota 46 9079 136
## 8530 2020-08-04 Tennessee 47 109652 1103
## 8531 2020-08-04 Texas 48 473105 7951
## 8532 2020-08-04 Utah 49 42018 324
## 8533 2020-08-04 Vermont 50 1431 57
## 8534 2020-08-04 Virgin Islands 78 463 8
## 8535 2020-08-04 Virginia 51 94251 2244
## 8536 2020-08-04 Washington 53 61828 1705
## 8537 2020-08-04 West Virginia 54 7051 124
## 8538 2020-08-04 Wisconsin 55 60263 970
## 8539 2020-08-04 Wyoming 56 2884 27
## 8540 2020-08-05 Alabama 1 94654 1695
## 8541 2020-08-05 Alaska 2 4181 23
## 8542 2020-08-05 Arizona 4 182230 3933
## 8543 2020-08-05 Arkansas 5 46293 508
## 8544 2020-08-05 California 6 532776 9866
## 8545 2020-08-05 Colorado 8 49143 1857
## 8546 2020-08-05 Connecticut 9 50225 4437
## 8547 2020-08-05 Delaware 10 15296 587
## 8548 2020-08-05 District of Columbia 11 12443 587
## 8549 2020-08-05 Florida 12 502731 7626
## 8550 2020-08-05 Georgia 13 186395 3899
## 8551 2020-08-05 Guam 66 1358 6
## 8552 2020-08-05 Hawaii 15 2740 26
## 8553 2020-08-05 Idaho 16 22854 218
## 8554 2020-08-05 Illinois 17 188474 7776
## 8555 2020-08-05 Indiana 18 71685 3007
## 8556 2020-08-05 Iowa 19 46836 900
## 8557 2020-08-05 Kansas 20 30047 371
## 8558 2020-08-05 Kentucky 21 33823 771
## 8559 2020-08-05 Louisiana 22 126061 4096
## 8560 2020-08-05 Maine 23 3992 124
## 8561 2020-08-05 Maryland 24 93000 3536
## 8562 2020-08-05 Massachusetts 25 119643 8659
## 8563 2020-08-05 Michigan 26 94045 6480
## 8564 2020-08-05 Minnesota 27 57820 1670
## 8565 2020-08-05 Mississippi 28 63444 1804
## 8566 2020-08-05 Missouri 29 55951 1337
## 8567 2020-08-05 Montana 30 4481 65
## 8568 2020-08-05 Nebraska 31 27489 342
## 8569 2020-08-05 Nevada 32 52919 891
## 8570 2020-08-05 New Hampshire 33 6719 418
## 8571 2020-08-05 New Jersey 34 185180 15842
## 8572 2020-08-05 New Mexico 35 21566 667
## 8573 2020-08-05 New York 36 422935 32431
## 8574 2020-08-05 North Carolina 37 129454 2079
## 8575 2020-08-05 North Dakota 38 7061 112
## 8576 2020-08-05 Northern Mariana Islands 69 46 2
## 8577 2020-08-05 Ohio 39 96305 3596
## 8578 2020-08-05 Oklahoma 40 40555 583
## 8579 2020-08-05 Oregon 41 19979 342
## 8580 2020-08-05 Pennsylvania 42 120492 7310
## 8581 2020-08-05 Puerto Rico 72 19651 246
## 8582 2020-08-05 Rhode Island 44 19481 1012
## 8583 2020-08-05 South Carolina 45 95472 1894
## 8584 2020-08-05 South Dakota 46 9168 137
## 8585 2020-08-05 Tennessee 47 111305 1130
## 8586 2020-08-05 Texas 48 482467 8152
## 8587 2020-08-05 Utah 49 42478 330
## 8588 2020-08-05 Vermont 50 1436 57
## 8589 2020-08-05 Virgin Islands 78 501 9
## 8590 2020-08-05 Virginia 51 95049 2274
## 8591 2020-08-05 Washington 53 62389 1704
## 8592 2020-08-05 West Virginia 54 7159 124
## 8593 2020-08-05 Wisconsin 55 61247 979
## 8594 2020-08-05 Wyoming 56 2923 27
## 8595 2020-08-06 Alabama 1 96592 1714
## 8596 2020-08-06 Alaska 2 4221 23
## 8597 2020-08-06 Arizona 4 183744 4005
## 8598 2020-08-06 Arkansas 5 47028 515
## 8599 2020-08-06 California 6 541013 10014
## 8600 2020-08-06 Colorado 8 49633 1857
## 8601 2020-08-06 Connecticut 9 50245 4437
## 8602 2020-08-06 Delaware 10 15365 587
## 8603 2020-08-06 District of Columbia 11 12518 587
## 8604 2020-08-06 Florida 12 510381 7746
## 8605 2020-08-06 Georgia 13 189300 3942
## 8606 2020-08-06 Guam 66 1366 6
## 8607 2020-08-06 Hawaii 15 2891 28
## 8608 2020-08-06 Idaho 16 23510 227
## 8609 2020-08-06 Illinois 17 190465 7796
## 8610 2020-08-06 Indiana 18 72741 3013
## 8611 2020-08-06 Iowa 19 47559 912
## 8612 2020-08-06 Kansas 20 30153 376
## 8613 2020-08-06 Kentucky 21 34435 780
## 8614 2020-08-06 Louisiana 22 127364 4146
## 8615 2020-08-06 Maine 23 3997 124
## 8616 2020-08-06 Maryland 24 93598 3551
## 8617 2020-08-06 Massachusetts 25 119874 8691
## 8618 2020-08-06 Michigan 26 94819 6508
## 8619 2020-08-06 Minnesota 27 58681 1677
## 8620 2020-08-06 Mississippi 28 64400 1825
## 8621 2020-08-06 Missouri 29 57175 1349
## 8622 2020-08-06 Montana 30 4621 66
## 8623 2020-08-06 Nebraska 31 27821 347
## 8624 2020-08-06 Nevada 32 53705 901
## 8625 2020-08-06 New Hampshire 33 6742 419
## 8626 2020-08-06 New Jersey 34 185554 15849
## 8627 2020-08-06 New Mexico 35 21773 669
## 8628 2020-08-06 New York 36 423629 32329
## 8629 2020-08-06 North Carolina 37 131478 2122
## 8630 2020-08-06 North Dakota 38 7181 113
## 8631 2020-08-06 Northern Mariana Islands 69 47 2
## 8632 2020-08-06 Ohio 39 97471 3618
## 8633 2020-08-06 Oklahoma 40 41395 593
## 8634 2020-08-06 Oregon 41 20250 343
## 8635 2020-08-06 Pennsylvania 42 121294 7340
## 8636 2020-08-06 Puerto Rico 72 19934 258
## 8637 2020-08-06 Rhode Island 44 19611 1014
## 8638 2020-08-06 South Carolina 45 96797 1943
## 8639 2020-08-06 South Dakota 46 9273 141
## 8640 2020-08-06 Tennessee 47 113519 1170
## 8641 2020-08-06 Texas 48 490102 8400
## 8642 2020-08-06 Utah 49 43032 332
## 8643 2020-08-06 Vermont 50 1445 58
## 8644 2020-08-06 Virgin Islands 78 522 9
## 8645 2020-08-06 Virginia 51 95867 2299
## 8646 2020-08-06 Washington 53 63056 1715
## 8647 2020-08-06 West Virginia 54 7277 124
## 8648 2020-08-06 Wisconsin 55 62139 988
## 8649 2020-08-06 Wyoming 56 2958 27
## 8650 2020-08-07 Alabama 1 98301 1735
## 8651 2020-08-07 Alaska 2 4286 23
## 8652 2020-08-07 Arizona 4 185104 4085
## 8653 2020-08-07 Arkansas 5 48039 521
## 8654 2020-08-07 California 6 548142 10197
## 8655 2020-08-07 Colorado 8 50081 1862
## 8656 2020-08-07 Connecticut 9 50320 4441
## 8657 2020-08-07 Delaware 10 15445 588
## 8658 2020-08-07 District of Columbia 11 12589 589
## 8659 2020-08-07 Florida 12 518067 7926
## 8660 2020-08-07 Georgia 13 193276 4029
## 8661 2020-08-07 Guam 66 1380 6
## 8662 2020-08-07 Hawaii 15 3092 30
## 8663 2020-08-07 Idaho 16 24073 231
## 8664 2020-08-07 Illinois 17 192482 7833
## 8665 2020-08-07 Indiana 18 73986 3023
## 8666 2020-08-07 Iowa 19 47920 915
## 8667 2020-08-07 Kansas 20 30966 380
## 8668 2020-08-07 Kentucky 21 35147 785
## 8669 2020-08-07 Louisiana 22 128864 4207
## 8670 2020-08-07 Maine 23 4014 124
## 8671 2020-08-07 Maryland 24 94395 3565
## 8672 2020-08-07 Massachusetts 25 120291 8709
## 8673 2020-08-07 Michigan 26 95632 6527
## 8674 2020-08-07 Minnesota 27 59226 1681
## 8675 2020-08-07 Mississippi 28 65436 1848
## 8676 2020-08-07 Missouri 29 58321 1374
## 8677 2020-08-07 Montana 30 4771 71
## 8678 2020-08-07 Nebraska 31 28104 352
## 8679 2020-08-07 Nevada 32 54633 920
## 8680 2020-08-07 New Hampshire 33 6779 419
## 8681 2020-08-07 New Jersey 34 185914 15860
## 8682 2020-08-07 New Mexico 35 21965 675
## 8683 2020-08-07 New York 36 424349 32336
## 8684 2020-08-07 North Carolina 37 133033 2160
## 8685 2020-08-07 North Dakota 38 7331 114
## 8686 2020-08-07 Northern Mariana Islands 69 47 2
## 8687 2020-08-07 Ohio 39 98675 3652
## 8688 2020-08-07 Oklahoma 40 42234 600
## 8689 2020-08-07 Oregon 41 20658 351
## 8690 2020-08-07 Pennsylvania 42 122078 7360
## 8691 2020-08-07 Puerto Rico 72 20686 265
## 8692 2020-08-07 Rhode Island 44 19738 1014
## 8693 2020-08-07 South Carolina 45 98219 1962
## 8694 2020-08-07 South Dakota 46 9371 144
## 8695 2020-08-07 Tennessee 47 115940 1190
## 8696 2020-08-07 Texas 48 498266 8680
## 8697 2020-08-07 Utah 49 43530 337
## 8698 2020-08-07 Vermont 50 1448 58
## 8699 2020-08-07 Virgin Islands 78 528 9
## 8700 2020-08-07 Virginia 51 97882 2317
## 8701 2020-08-07 Washington 53 63975 1743
## 8702 2020-08-07 West Virginia 54 7433 127
## 8703 2020-08-07 Wisconsin 55 63256 1001
## 8704 2020-08-07 Wyoming 56 3000 28
## 8705 2020-08-08 Alabama 1 100173 1755
## 8706 2020-08-08 Alaska 2 4371 24
## 8707 2020-08-08 Arizona 4 186226 4140
## 8708 2020-08-08 Arkansas 5 48811 535
## 8709 2020-08-08 California 6 556158 10299
## 8710 2020-08-08 Colorado 8 50491 1862
## 8711 2020-08-08 Connecticut 9 50320 4441
## 8712 2020-08-08 Delaware 10 15502 590
## 8713 2020-08-08 District of Columbia 11 12653 590
## 8714 2020-08-08 Florida 12 526569 8108
## 8715 2020-08-08 Georgia 13 197308 4095
## 8716 2020-08-08 Guam 66 1381 6
## 8717 2020-08-08 Hawaii 15 3323 30
## 8718 2020-08-08 Idaho 16 24593 236
## 8719 2020-08-08 Illinois 17 194531 7846
## 8720 2020-08-08 Indiana 18 75025 3036
## 8721 2020-08-08 Iowa 19 48311 926
## 8722 2020-08-08 Kansas 20 30992 380
## 8723 2020-08-08 Kentucky 21 35986 790
## 8724 2020-08-08 Louisiana 22 128864 4207
## 8725 2020-08-08 Maine 23 4026 125
## 8726 2020-08-08 Maryland 24 95157 3577
## 8727 2020-08-08 Massachusetts 25 120711 8721
## 8728 2020-08-08 Michigan 26 96328 6521
## 8729 2020-08-08 Minnesota 27 60142 1689
## 8730 2020-08-08 Mississippi 28 66646 1874
## 8731 2020-08-08 Missouri 29 58710 1381
## 8732 2020-08-08 Montana 30 4889 75
## 8733 2020-08-08 Nebraska 31 28245 353
## 8734 2020-08-08 Nevada 32 55481 949
## 8735 2020-08-08 New Hampshire 33 6818 419
## 8736 2020-08-08 New Jersey 34 186282 15869
## 8737 2020-08-08 New Mexico 35 22115 681
## 8738 2020-08-08 New York 36 425055 32345
## 8739 2020-08-08 North Carolina 37 134915 2184
## 8740 2020-08-08 North Dakota 38 7512 116
## 8741 2020-08-08 Northern Mariana Islands 69 48 2
## 8742 2020-08-08 Ohio 39 99969 3668
## 8743 2020-08-08 Oklahoma 40 43070 603
## 8744 2020-08-08 Oregon 41 21011 358
## 8745 2020-08-08 Pennsylvania 42 122666 7372
## 8746 2020-08-08 Puerto Rico 72 21424 274
## 8747 2020-08-08 Rhode Island 44 19738 1014
## 8748 2020-08-08 South Carolina 45 99460 2007
## 8749 2020-08-08 South Dakota 46 9477 146
## 8750 2020-08-08 Tennessee 47 117725 1201
## 8751 2020-08-08 Texas 48 504605 8885
## 8752 2020-08-08 Utah 49 43821 336
## 8753 2020-08-08 Vermont 50 1454 58
## 8754 2020-08-08 Virgin Islands 78 528 9
## 8755 2020-08-08 Virginia 51 99189 2322
## 8756 2020-08-08 Washington 53 64346 1751
## 8757 2020-08-08 West Virginia 54 7563 131
## 8758 2020-08-08 Wisconsin 55 64231 1007
## 8759 2020-08-08 Wyoming 56 3013 28
## 8760 2020-08-09 Alabama 1 101334 1768
## 8761 2020-08-09 Alaska 2 4471 24
## 8762 2020-08-09 Arizona 4 187086 4152
## 8763 2020-08-09 Arkansas 5 49383 544
## 8764 2020-08-09 California 6 563244 10365
## 8765 2020-08-09 Colorado 8 50799 1863
## 8766 2020-08-09 Connecticut 9 50320 4441
## 8767 2020-08-09 Delaware 10 15575 591
## 8768 2020-08-09 District of Columbia 11 12753 591
## 8769 2020-08-09 Florida 12 532798 8185
## 8770 2020-08-09 Georgia 13 200147 4108
## 8771 2020-08-09 Guam 66 1381 6
## 8772 2020-08-09 Hawaii 15 3475 30
## 8773 2020-08-09 Idaho 16 24797 237
## 8774 2020-08-09 Illinois 17 195897 7852
## 8775 2020-08-09 Indiana 18 76071 3041
## 8776 2020-08-09 Iowa 19 48919 931
## 8777 2020-08-09 Kansas 20 31145 380
## 8778 2020-08-09 Kentucky 21 36316 790
## 8779 2020-08-09 Louisiana 22 131517 4263
## 8780 2020-08-09 Maine 23 4042 125
## 8781 2020-08-09 Maryland 24 96065 3585
## 8782 2020-08-09 Massachusetts 25 121040 8735
## 8783 2020-08-09 Michigan 26 96835 6520
## 8784 2020-08-09 Minnesota 27 60939 1698
## 8785 2020-08-09 Mississippi 28 67173 1896
## 8786 2020-08-09 Missouri 29 59895 1386
## 8787 2020-08-09 Montana 30 4952 75
## 8788 2020-08-09 Nebraska 31 28432 353
## 8789 2020-08-09 Nevada 32 56278 959
## 8790 2020-08-09 New Hampshire 33 6831 419
## 8791 2020-08-09 New Jersey 34 186626 15874
## 8792 2020-08-09 New Mexico 35 22315 685
## 8793 2020-08-09 New York 36 425568 32354
## 8794 2020-08-09 North Carolina 37 136250 2195
## 8795 2020-08-09 North Dakota 38 7600 116
## 8796 2020-08-09 Northern Mariana Islands 69 48 2
## 8797 2020-08-09 Ohio 39 100848 3669
## 8798 2020-08-09 Oklahoma 40 43561 603
## 8799 2020-08-09 Oregon 41 21272 359
## 8800 2020-08-09 Pennsylvania 42 123312 7374
## 8801 2020-08-09 Puerto Rico 72 22121 279
## 8802 2020-08-09 Rhode Island 44 19738 1014
## 8803 2020-08-09 South Carolina 45 100435 2031
## 8804 2020-08-09 South Dakota 46 9605 146
## 8805 2020-08-09 Tennessee 47 119788 1209
## 8806 2020-08-09 Texas 48 510392 8984
## 8807 2020-08-09 Utah 49 44130 337
## 8808 2020-08-09 Vermont 50 1459 58
## 8809 2020-08-09 Virgin Islands 78 547 9
## 8810 2020-08-09 Virginia 51 100086 2326
## 8811 2020-08-09 Washington 53 65248 1773
## 8812 2020-08-09 West Virginia 54 7694 139
## 8813 2020-08-09 Wisconsin 55 64835 1009
## 8814 2020-08-09 Wyoming 56 3050 28
## 8815 2020-08-10 Alabama 1 103020 1797
## 8816 2020-08-10 Alaska 2 4537 24
## 8817 2020-08-10 Arizona 4 187634 4157
## 8818 2020-08-10 Arkansas 5 50028 555
## 8819 2020-08-10 California 6 574267 10460
## 8820 2020-08-10 Colorado 8 51104 1868
## 8821 2020-08-10 Connecticut 9 50567 4444
## 8822 2020-08-10 Delaware 10 15634 591
## 8823 2020-08-10 District of Columbia 11 12807 591
## 8824 2020-08-10 Florida 12 536953 8276
## 8825 2020-08-10 Georgia 13 202276 4138
## 8826 2020-08-10 Guam 66 1387 6
## 8827 2020-08-10 Hawaii 15 3615 33
## 8828 2020-08-10 Idaho 16 25267 239
## 8829 2020-08-10 Illinois 17 197326 7854
## 8830 2020-08-10 Indiana 18 76734 3044
## 8831 2020-08-10 Iowa 19 49164 935
## 8832 2020-08-10 Kansas 20 32094 387
## 8833 2020-08-10 Kentucky 21 36739 794
## 8834 2020-08-10 Louisiana 22 132079 4287
## 8835 2020-08-10 Maine 23 4049 125
## 8836 2020-08-10 Maryland 24 96821 3591
## 8837 2020-08-10 Massachusetts 25 121315 8741
## 8838 2020-08-10 Michigan 26 97472 6527
## 8839 2020-08-10 Minnesota 27 61557 1701
## 8840 2020-08-10 Mississippi 28 67649 1912
## 8841 2020-08-10 Missouri 29 60882 1397
## 8842 2020-08-10 Montana 30 5032 75
## 8843 2020-08-10 Nebraska 31 28696 354
## 8844 2020-08-10 Nevada 32 57022 963
## 8845 2020-08-10 New Hampshire 33 6840 419
## 8846 2020-08-10 New Jersey 34 186884 15878
## 8847 2020-08-10 New Mexico 35 22444 690
## 8848 2020-08-10 New York 36 426046 32361
## 8849 2020-08-10 North Carolina 37 137006 2198
## 8850 2020-08-10 North Dakota 38 7717 117
## 8851 2020-08-10 Northern Mariana Islands 69 49 2
## 8852 2020-08-10 Ohio 39 101731 3673
## 8853 2020-08-10 Oklahoma 40 43962 605
## 8854 2020-08-10 Oregon 41 21488 362
## 8855 2020-08-10 Pennsylvania 42 124269 7378
## 8856 2020-08-10 Puerto Rico 72 22821 279
## 8857 2020-08-10 Rhode Island 44 19934 1015
## 8858 2020-08-10 South Carolina 45 101159 2049
## 8859 2020-08-10 South Dakota 46 9663 146
## 8860 2020-08-10 Tennessee 47 120967 1223
## 8861 2020-08-10 Texas 48 517182 9064
## 8862 2020-08-10 Utah 49 44487 346
## 8863 2020-08-10 Vermont 50 1462 58
## 8864 2020-08-10 Virgin Islands 78 576 9
## 8865 2020-08-10 Virginia 51 100749 2327
## 8866 2020-08-10 Washington 53 66225 1780
## 8867 2020-08-10 West Virginia 54 7754 141
## 8868 2020-08-10 Wisconsin 55 65427 1009
## 8869 2020-08-10 Wyoming 56 3042 28
## 8870 2020-08-11 Alabama 1 103851 1847
## 8871 2020-08-11 Alaska 2 4587 24
## 8872 2020-08-11 Arizona 4 188780 4205
## 8873 2020-08-11 Arkansas 5 50411 566
## 8874 2020-08-11 California 6 586078 10654
## 8875 2020-08-11 Colorado 8 51487 1878
## 8876 2020-08-11 Connecticut 9 50684 4444
## 8877 2020-08-11 Delaware 10 15699 591
## 8878 2020-08-11 District of Columbia 11 12896 593
## 8879 2020-08-11 Florida 12 542784 8552
## 8880 2020-08-11 Georgia 13 205920 4255
## 8881 2020-08-11 Guam 66 1403 6
## 8882 2020-08-11 Hawaii 15 3733 35
## 8883 2020-08-11 Idaho 16 25767 248
## 8884 2020-08-11 Illinois 17 198919 7879
## 8885 2020-08-11 Indiana 18 77625 3069
## 8886 2020-08-11 Iowa 19 49521 946
## 8887 2020-08-11 Kansas 20 32181 388
## 8888 2020-08-11 Kentucky 21 37437 803
## 8889 2020-08-11 Louisiana 22 133243 4313
## 8890 2020-08-11 Maine 23 4050 126
## 8891 2020-08-11 Maryland 24 97403 3604
## 8892 2020-08-11 Massachusetts 25 121707 8751
## 8893 2020-08-11 Michigan 26 98361 6534
## 8894 2020-08-11 Minnesota 27 61880 1707
## 8895 2020-08-11 Mississippi 28 68293 1944
## 8896 2020-08-11 Missouri 29 61949 1402
## 8897 2020-08-11 Montana 30 5125 77
## 8898 2020-08-11 Nebraska 31 29030 357
## 8899 2020-08-11 Nevada 32 57608 982
## 8900 2020-08-11 New Hampshire 33 6861 419
## 8901 2020-08-11 New Jersey 34 187328 15890
## 8902 2020-08-11 New Mexico 35 22643 693
## 8903 2020-08-11 New York 36 426713 32372
## 8904 2020-08-11 North Carolina 37 138074 2238
## 8905 2020-08-11 North Dakota 38 7889 122
## 8906 2020-08-11 Northern Mariana Islands 69 49 2
## 8907 2020-08-11 Ohio 39 102826 3708
## 8908 2020-08-11 Oklahoma 40 44725 618
## 8909 2020-08-11 Oregon 41 21782 372
## 8910 2020-08-11 Pennsylvania 42 125061 7404
## 8911 2020-08-11 Puerto Rico 72 23403 287
## 8912 2020-08-11 Rhode Island 44 20053 1016
## 8913 2020-08-11 South Carolina 45 102130 2098
## 8914 2020-08-11 South Dakota 46 9713 146
## 8915 2020-08-11 Tennessee 47 122003 1259
## 8916 2020-08-11 Texas 48 524898 9311
## 8917 2020-08-11 Utah 49 44836 350
## 8918 2020-08-11 Vermont 50 1472 58
## 8919 2020-08-11 Virgin Islands 78 639 9
## 8920 2020-08-11 Virginia 51 101745 2344
## 8921 2020-08-11 Washington 53 66619 1785
## 8922 2020-08-11 West Virginia 54 7875 147
## 8923 2020-08-11 Wisconsin 55 66146 1017
## 8924 2020-08-11 Wyoming 56 3073 29
## 8925 2020-08-12 Alabama 1 104786 1882
## 8926 2020-08-12 Alaska 2 4653 25
## 8927 2020-08-12 Arizona 4 189522 4348
## 8928 2020-08-12 Arkansas 5 51114 573
## 8929 2020-08-12 California 6 595097 10808
## 8930 2020-08-12 Colorado 8 51847 1881
## 8931 2020-08-12 Connecticut 9 50706 4450
## 8932 2020-08-12 Delaware 10 15765 592
## 8933 2020-08-12 District of Columbia 11 12959 593
## 8934 2020-08-12 Florida 12 550893 8764
## 8935 2020-08-12 Georgia 13 209683 4360
## 8936 2020-08-12 Guam 66 1418 6
## 8937 2020-08-12 Hawaii 15 3935 37
## 8938 2020-08-12 Idaho 16 26280 251
## 8939 2020-08-12 Illinois 17 200648 7907
## 8940 2020-08-12 Indiana 18 78337 3086
## 8941 2020-08-12 Iowa 19 49973 953
## 8942 2020-08-12 Kansas 20 32977 397
## 8943 2020-08-12 Kentucky 21 38546 809
## 8944 2020-08-12 Louisiana 22 134427 4361
## 8945 2020-08-12 Maine 23 4070 126
## 8946 2020-08-12 Maryland 24 97959 3612
## 8947 2020-08-12 Massachusetts 25 122000 8769
## 8948 2020-08-12 Michigan 26 98825 6541
## 8949 2020-08-12 Minnesota 27 62349 1724
## 8950 2020-08-12 Mississippi 28 69374 1989
## 8951 2020-08-12 Missouri 29 63372 1408
## 8952 2020-08-12 Montana 30 5292 80
## 8953 2020-08-12 Nebraska 31 29244 359
## 8954 2020-08-12 Nevada 32 58132 999
## 8955 2020-08-12 New Hampshire 33 6887 420
## 8956 2020-08-12 New Jersey 34 187777 15885
## 8957 2020-08-12 New Mexico 35 22816 695
## 8958 2020-08-12 New York 36 427419 32384
## 8959 2020-08-12 North Carolina 37 139413 2277
## 8960 2020-08-12 North Dakota 38 7974 124
## 8961 2020-08-12 Northern Mariana Islands 69 49 2
## 8962 2020-08-12 Ohio 39 104248 3734
## 8963 2020-08-12 Oklahoma 40 45392 627
## 8964 2020-08-12 Oregon 41 22029 378
## 8965 2020-08-12 Pennsylvania 42 125965 7447
## 8966 2020-08-12 Puerto Rico 72 24074 295
## 8967 2020-08-12 Rhode Island 44 20129 1018
## 8968 2020-08-12 South Carolina 45 102974 2144
## 8969 2020-08-12 South Dakota 46 9815 147
## 8970 2020-08-12 Tennessee 47 123489 1274
## 8971 2020-08-12 Texas 48 531825 9645
## 8972 2020-08-12 Utah 49 45181 355
## 8973 2020-08-12 Vermont 50 1478 58
## 8974 2020-08-12 Virgin Islands 78 639 9
## 8975 2020-08-12 Virginia 51 102521 2352
## 8976 2020-08-12 Washington 53 67170 1788
## 8977 2020-08-12 West Virginia 54 8008 153
## 8978 2020-08-12 Wisconsin 55 66705 1022
## 8979 2020-08-12 Wyoming 56 3086 29
## 8980 2020-08-13 Alabama 1 105557 1890
## 8981 2020-08-13 Alaska 2 4748 25
## 8982 2020-08-13 Arizona 4 190850 4385
## 8983 2020-08-13 Arkansas 5 51766 582
## 8984 2020-08-13 California 6 603212 10995
## 8985 2020-08-13 Colorado 8 52242 1886
## 8986 2020-08-13 Connecticut 9 50782 4450
## 8987 2020-08-13 Delaware 10 15967 593
## 8988 2020-08-13 District of Columbia 11 13024 594
## 8989 2020-08-13 Florida 12 557129 8912
## 8990 2020-08-13 Georgia 13 212009 4440
## 8991 2020-08-13 Guam 66 1446 6
## 8992 2020-08-13 Hawaii 15 4289 39
## 8993 2020-08-13 Idaho 16 26814 256
## 8994 2020-08-13 Illinois 17 202577 7934
## 8995 2020-08-13 Indiana 18 79404 3105
## 8996 2020-08-13 Iowa 19 50678 964
## 8997 2020-08-13 Kansas 20 33087 403
## 8998 2020-08-13 Kentucky 21 39306 817
## 8999 2020-08-13 Louisiana 22 135562 4402
## 9000 2020-08-13 Maine 23 4089 126
## 9001 2020-08-13 Maryland 24 98728 3620
## 9002 2020-08-13 Massachusetts 25 122423 8790
## 9003 2020-08-13 Michigan 26 99963 6556
## 9004 2020-08-13 Minnesota 27 63039 1731
## 9005 2020-08-13 Mississippi 28 69986 2011
## 9006 2020-08-13 Missouri 29 64933 1417
## 9007 2020-08-13 Montana 30 5430 81
## 9008 2020-08-13 Nebraska 31 29660 362
## 9009 2020-08-13 Nevada 32 58812 1030
## 9010 2020-08-13 New Hampshire 33 6921 422
## 9011 2020-08-13 New Jersey 34 188433 15893
## 9012 2020-08-13 New Mexico 35 22987 697
## 9013 2020-08-13 New York 36 428155 32399
## 9014 2020-08-13 North Carolina 37 141006 2313
## 9015 2020-08-13 North Dakota 38 8175 124
## 9016 2020-08-13 Northern Mariana Islands 69 49 2
## 9017 2020-08-13 Ohio 39 105426 3755
## 9018 2020-08-13 Oklahoma 40 46101 638
## 9019 2020-08-13 Oregon 41 22315 387
## 9020 2020-08-13 Pennsylvania 42 126950 7474
## 9021 2020-08-13 Puerto Rico 72 24446 306
## 9022 2020-08-13 Rhode Island 44 20240 1019
## 9023 2020-08-13 South Carolina 45 103909 2186
## 9024 2020-08-13 South Dakota 46 9897 148
## 9025 2020-08-13 Tennessee 47 125487 1300
## 9026 2020-08-13 Texas 48 538805 9879
## 9027 2020-08-13 Utah 49 45537 358
## 9028 2020-08-13 Vermont 50 1484 58
## 9029 2020-08-13 Virgin Islands 78 704 9
## 9030 2020-08-13 Virginia 51 103622 2363
## 9031 2020-08-13 Washington 53 68095 1822
## 9032 2020-08-13 West Virginia 54 8151 153
## 9033 2020-08-13 Wisconsin 55 67781 1029
## 9034 2020-08-13 Wyoming 56 3119 29
## 9035 2020-08-14 Alabama 1 106309 1893
## 9036 2020-08-14 Alaska 2 4867 25
## 9037 2020-08-14 Arizona 4 191810 4426
## 9038 2020-08-14 Arkansas 5 52392 587
## 9039 2020-08-14 California 6 613243 11146
## 9040 2020-08-14 Colorado 8 52587 1892
## 9041 2020-08-14 Connecticut 9 50897 4453
## 9042 2020-08-14 Delaware 10 16340 593
## 9043 2020-08-14 District of Columbia 11 13118 594
## 9044 2020-08-14 Florida 12 563277 9140
## 9045 2020-08-14 Georgia 13 215328 4474
## 9046 2020-08-14 Guam 66 1471 6
## 9047 2020-08-14 Hawaii 15 4520 39
## 9048 2020-08-14 Idaho 16 27312 267
## 9049 2020-08-14 Illinois 17 204827 7953
## 9050 2020-08-14 Indiana 18 80507 3113
## 9051 2020-08-14 Iowa 19 51272 972
## 9052 2020-08-14 Kansas 20 34246 404
## 9053 2020-08-14 Kentucky 21 40012 822
## 9054 2020-08-14 Louisiana 22 136860 4430
## 9055 2020-08-14 Maine 23 4115 126
## 9056 2020-08-14 Maryland 24 99430 3631
## 9057 2020-08-14 Massachusetts 25 122728 8810
## 9058 2020-08-14 Michigan 26 100813 6567
## 9059 2020-08-14 Minnesota 27 63769 1739
## 9060 2020-08-14 Mississippi 28 70930 2043
## 9061 2020-08-14 Missouri 29 66305 1425
## 9062 2020-08-14 Montana 30 5564 82
## 9063 2020-08-14 Nebraska 31 29988 363
## 9064 2020-08-14 Nevada 32 59800 1045
## 9065 2020-08-14 New Hampshire 33 6964 423
## 9066 2020-08-14 New Jersey 34 189003 15903
## 9067 2020-08-14 New Mexico 35 23160 703
## 9068 2020-08-14 New York 36 428879 32407
## 9069 2020-08-14 North Carolina 37 142544 2344
## 9070 2020-08-14 North Dakota 38 8326 125
## 9071 2020-08-14 Northern Mariana Islands 69 50 2
## 9072 2020-08-14 Ohio 39 106557 3784
## 9073 2020-08-14 Oklahoma 40 46893 644
## 9074 2020-08-14 Oregon 41 22614 388
## 9075 2020-08-14 Pennsylvania 42 127774 7513
## 9076 2020-08-14 Puerto Rico 72 25128 317
## 9077 2020-08-14 Rhode Island 44 20335 1021
## 9078 2020-08-14 South Carolina 45 104841 2204
## 9079 2020-08-14 South Dakota 46 10024 150
## 9080 2020-08-14 Tennessee 47 127465 1312
## 9081 2020-08-14 Texas 48 547670 10195
## 9082 2020-08-14 Utah 49 46048 362
## 9083 2020-08-14 Vermont 50 1501 58
## 9084 2020-08-14 Virgin Islands 78 734 9
## 9085 2020-08-14 Virginia 51 104838 2370
## 9086 2020-08-14 Washington 53 68581 1825
## 9087 2020-08-14 West Virginia 54 8274 157
## 9088 2020-08-14 Wisconsin 55 68761 1035
## 9089 2020-08-14 Wyoming 56 3183 30
## 9090 2020-08-15 Alabama 1 107580 1896
## 9091 2020-08-15 Alaska 2 4952 26
## 9092 2020-08-15 Arizona 4 192670 4497
## 9093 2020-08-15 Arkansas 5 51992 600
## 9094 2020-08-15 California 6 621981 11229
## 9095 2020-08-15 Colorado 8 52868 1897
## 9096 2020-08-15 Connecticut 9 50897 4453
## 9097 2020-08-15 Delaware 10 16396 593
## 9098 2020-08-15 District of Columbia 11 13159 597
## 9099 2020-08-15 Florida 12 569629 9344
## 9100 2020-08-15 Georgia 13 218344 4568
## 9101 2020-08-15 Guam 66 1471 6
## 9102 2020-08-15 Hawaii 15 4802 39
## 9103 2020-08-15 Idaho 16 27620 269
## 9104 2020-08-15 Illinois 17 206505 7959
## 9105 2020-08-15 Indiana 18 81561 3128
## 9106 2020-08-15 Iowa 19 52065 975
## 9107 2020-08-15 Kansas 20 34294 406
## 9108 2020-08-15 Kentucky 21 40677 829
## 9109 2020-08-15 Louisiana 22 136860 4430
## 9110 2020-08-15 Maine 23 4144 127
## 9111 2020-08-15 Maryland 24 100237 3636
## 9112 2020-08-15 Massachusetts 25 123199 8826
## 9113 2020-08-15 Michigan 26 101831 6586
## 9114 2020-08-15 Minnesota 27 64459 1745
## 9115 2020-08-15 Mississippi 28 71755 2080
## 9116 2020-08-15 Missouri 29 67442 1431
## 9117 2020-08-15 Montana 30 5663 82
## 9118 2020-08-15 Nebraska 31 30241 363
## 9119 2020-08-15 Nevada 32 60648 1070
## 9120 2020-08-15 New Hampshire 33 6980 423
## 9121 2020-08-15 New Jersey 34 189281 15910
## 9122 2020-08-15 New Mexico 35 23302 711
## 9123 2020-08-15 New York 36 429617 32414
## 9124 2020-08-15 North Carolina 37 143956 2370
## 9125 2020-08-15 North Dakota 38 8448 125
## 9126 2020-08-15 Northern Mariana Islands 69 50 2
## 9127 2020-08-15 Ohio 39 107674 3824
## 9128 2020-08-15 Oklahoma 40 47798 657
## 9129 2020-08-15 Oregon 41 23018 389
## 9130 2020-08-15 Pennsylvania 42 128531 7525
## 9131 2020-08-15 Puerto Rico 72 25695 329
## 9132 2020-08-15 Rhode Island 44 20335 1021
## 9133 2020-08-15 South Carolina 45 105882 2260
## 9134 2020-08-15 South Dakota 46 10118 152
## 9135 2020-08-15 Tennessee 47 128771 1331
## 9136 2020-08-15 Texas 48 555343 10379
## 9137 2020-08-15 Utah 49 46413 364
## 9138 2020-08-15 Vermont 50 1509 58
## 9139 2020-08-15 Virgin Islands 78 734 9
## 9140 2020-08-15 Virginia 51 105750 2381
## 9141 2020-08-15 Washington 53 69136 1842
## 9142 2020-08-15 West Virginia 54 8457 160
## 9143 2020-08-15 Wisconsin 55 69560 1047
## 9144 2020-08-15 Wyoming 56 3227 30
## 9145 2020-08-16 Alabama 1 108433 1898
## 9146 2020-08-16 Alaska 2 5058 26
## 9147 2020-08-16 Arizona 4 193554 4509
## 9148 2020-08-16 Arkansas 5 52665 599
## 9149 2020-08-16 California 6 628508 11245
## 9150 2020-08-16 Colorado 8 53188 1897
## 9151 2020-08-16 Connecticut 9 50897 4453
## 9152 2020-08-16 Delaware 10 16451 593
## 9153 2020-08-16 District of Columbia 11 13220 597
## 9154 2020-08-16 Florida 12 573408 9451
## 9155 2020-08-16 Georgia 13 220165 4600
## 9156 2020-08-16 Guam 66 1471 6
## 9157 2020-08-16 Hawaii 15 5019 39
## 9158 2020-08-16 Idaho 16 27794 269
## 9159 2020-08-16 Illinois 17 208068 7973
## 9160 2020-08-16 Indiana 18 82304 3133
## 9161 2020-08-16 Iowa 19 52447 975
## 9162 2020-08-16 Kansas 20 34495 406
## 9163 2020-08-16 Kentucky 21 40883 832
## 9164 2020-08-16 Louisiana 22 138041 4507
## 9165 2020-08-16 Maine 23 4168 127
## 9166 2020-08-16 Maryland 24 100772 3639
## 9167 2020-08-16 Massachusetts 25 123593 8838
## 9168 2020-08-16 Michigan 26 102323 6592
## 9169 2020-08-16 Minnesota 27 65198 1752
## 9170 2020-08-16 Mississippi 28 72136 2084
## 9171 2020-08-16 Missouri 29 68493 1436
## 9172 2020-08-16 Montana 30 5751 82
## 9173 2020-08-16 Nebraska 31 30372 363
## 9174 2020-08-16 Nevada 32 61374 1074
## 9175 2020-08-16 New Hampshire 33 6988 423
## 9176 2020-08-16 New Jersey 34 189294 15912
## 9177 2020-08-16 New Mexico 35 23408 714
## 9178 2020-08-16 New York 36 430226 32424
## 9179 2020-08-16 North Carolina 37 145111 2372
## 9180 2020-08-16 North Dakota 38 8591 129
## 9181 2020-08-16 Northern Mariana Islands 69 50 2
## 9182 2020-08-16 Ohio 39 108287 3826
## 9183 2020-08-16 Oklahoma 40 48342 661
## 9184 2020-08-16 Oregon 41 23262 389
## 9185 2020-08-16 Pennsylvania 42 129075 7532
## 9186 2020-08-16 Puerto Rico 72 26006 335
## 9187 2020-08-16 Rhode Island 44 20335 1021
## 9188 2020-08-16 South Carolina 45 106497 2269
## 9189 2020-08-16 South Dakota 46 10274 153
## 9190 2020-08-16 Tennessee 47 130620 1349
## 9191 2020-08-16 Texas 48 563464 10498
## 9192 2020-08-16 Utah 49 46652 364
## 9193 2020-08-16 Vermont 50 1515 58
## 9194 2020-08-16 Virgin Islands 78 741 9
## 9195 2020-08-16 Virginia 51 106687 2381
## 9196 2020-08-16 Washington 53 69894 1861
## 9197 2020-08-16 West Virginia 54 8564 160
## 9198 2020-08-16 Wisconsin 55 70246 1048
## 9199 2020-08-16 Wyoming 56 3286 30
## 9200 2020-08-17 Alabama 1 109004 1925
## 9201 2020-08-17 Alaska 2 5108 26
## 9202 2020-08-17 Arizona 4 194027 4509
## 9203 2020-08-17 Arkansas 5 53077 603
## 9204 2020-08-17 California 6 634991 11334
## 9205 2020-08-17 Colorado 8 53391 1903
## 9206 2020-08-17 Connecticut 9 51267 4456
## 9207 2020-08-17 Delaware 10 16536 593
## 9208 2020-08-17 District of Columbia 11 13273 597
## 9209 2020-08-17 Florida 12 576086 9538
## 9210 2020-08-17 Georgia 13 221841 4624
## 9211 2020-08-17 Guam 66 1527 6
## 9212 2020-08-17 Hawaii 15 5192 39
## 9213 2020-08-17 Idaho 16 28113 275
## 9214 2020-08-17 Illinois 17 209942 7990
## 9215 2020-08-17 Indiana 18 82909 3135
## 9216 2020-08-17 Iowa 19 52829 987
## 9217 2020-08-17 Kansas 20 35544 410
## 9218 2020-08-17 Kentucky 21 41610 839
## 9219 2020-08-17 Louisiana 22 138608 4526
## 9220 2020-08-17 Maine 23 4197 127
## 9221 2020-08-17 Maryland 24 101276 3641
## 9222 2020-08-17 Massachusetts 25 123841 8842
## 9223 2020-08-17 Michigan 26 102872 6592
## 9224 2020-08-17 Minnesota 27 65762 1758
## 9225 2020-08-17 Mississippi 28 72412 2095
## 9226 2020-08-17 Missouri 29 69888 1468
## 9227 2020-08-17 Montana 30 5810 82
## 9228 2020-08-17 Nebraska 31 30563 363
## 9229 2020-08-17 Nevada 32 62022 1077
## 9230 2020-08-17 New Hampshire 33 7004 423
## 9231 2020-08-17 New Jersey 34 189606 15916
## 9232 2020-08-17 New Mexico 35 23500 718
## 9233 2020-08-17 New York 36 430636 32435
## 9234 2020-08-17 North Carolina 37 145942 2384
## 9235 2020-08-17 North Dakota 38 8651 130
## 9236 2020-08-17 Northern Mariana Islands 69 53 2
## 9237 2020-08-17 Ohio 39 109062 3832
## 9238 2020-08-17 Oklahoma 40 48711 665
## 9239 2020-08-17 Oregon 41 23461 391
## 9240 2020-08-17 Pennsylvania 42 129686 7535
## 9241 2020-08-17 Puerto Rico 72 26760 335
## 9242 2020-08-17 Rhode Island 44 20572 1023
## 9243 2020-08-17 South Carolina 45 106953 2288
## 9244 2020-08-17 South Dakota 46 10360 153
## 9245 2020-08-17 Tennessee 47 131742 1370
## 9246 2020-08-17 Texas 48 569058 10559
## 9247 2020-08-17 Utah 49 46936 366
## 9248 2020-08-17 Vermont 50 1527 58
## 9249 2020-08-17 Virgin Islands 78 760 9
## 9250 2020-08-17 Virginia 51 107421 2385
## 9251 2020-08-17 Washington 53 70509 1869
## 9252 2020-08-17 West Virginia 54 8632 160
## 9253 2020-08-17 Wisconsin 55 70796 1050
## 9254 2020-08-17 Wyoming 56 3331 33
## 9255 2020-08-18 Alabama 1 110361 1936
## 9256 2020-08-18 Alaska 2 5175 27
## 9257 2020-08-18 Arizona 4 194931 4535
## 9258 2020-08-18 Arkansas 5 53487 619
## 9259 2020-08-18 California 6 640499 11523
## 9260 2020-08-18 Colorado 8 53674 1906
## 9261 2020-08-18 Connecticut 9 51255 4456
## 9262 2020-08-18 Delaware 10 16593 593
## 9263 2020-08-18 District of Columbia 11 13325 599
## 9264 2020-08-18 Florida 12 579924 9757
## 9265 2020-08-18 Georgia 13 224681 4691
## 9266 2020-08-18 Guam 66 1546 6
## 9267 2020-08-18 Hawaii 15 5326 40
## 9268 2020-08-18 Idaho 16 28486 283
## 9269 2020-08-18 Illinois 17 211806 8017
## 9270 2020-08-18 Indiana 18 83799 3165
## 9271 2020-08-18 Iowa 19 53201 1002
## 9272 2020-08-18 Kansas 20 35632 415
## 9273 2020-08-18 Kentucky 21 42270 858
## 9274 2020-08-18 Louisiana 22 139248 4554
## 9275 2020-08-18 Maine 23 4213 127
## 9276 2020-08-18 Maryland 24 101780 3650
## 9277 2020-08-18 Massachusetts 25 124063 8848
## 9278 2020-08-18 Michigan 26 103527 6607
## 9279 2020-08-18 Minnesota 27 66107 1767
## 9280 2020-08-18 Mississippi 28 73207 2128
## 9281 2020-08-18 Missouri 29 70759 1477
## 9282 2020-08-18 Montana 30 5867 84
## 9283 2020-08-18 Nebraska 31 30825 370
## 9284 2020-08-18 Nevada 32 62752 1102
## 9285 2020-08-18 New Hampshire 33 7017 424
## 9286 2020-08-18 New Jersey 34 189937 15925
## 9287 2020-08-18 New Mexico 35 23579 723
## 9288 2020-08-18 New York 36 431298 32446
## 9289 2020-08-18 North Carolina 37 147141 2425
## 9290 2020-08-18 North Dakota 38 8786 132
## 9291 2020-08-18 Northern Mariana Islands 69 54 2
## 9292 2020-08-18 Ohio 39 109923 3871
## 9293 2020-08-18 Oklahoma 40 49326 682
## 9294 2020-08-18 Oregon 41 23685 399
## 9295 2020-08-18 Pennsylvania 42 130286 7561
## 9296 2020-08-18 Puerto Rico 72 27713 346
## 9297 2020-08-18 Rhode Island 44 20692 1024
## 9298 2020-08-18 South Carolina 45 107672 2343
## 9299 2020-08-18 South Dakota 46 10443 154
## 9300 2020-08-18 Tennessee 47 132796 1410
## 9301 2020-08-18 Texas 48 577220 10798
## 9302 2020-08-18 Utah 49 47285 372
## 9303 2020-08-18 Vermont 50 1530 58
## 9304 2020-08-18 Virgin Islands 78 796 9
## 9305 2020-08-18 Virginia 51 108282 2396
## 9306 2020-08-18 Washington 53 71032 1895
## 9307 2020-08-18 West Virginia 54 8731 164
## 9308 2020-08-18 Wisconsin 55 71517 1063
## 9309 2020-08-18 Wyoming 56 3360 34
## 9310 2020-08-19 Alabama 1 111478 1944
## 9311 2020-08-19 Alaska 2 5245 27
## 9312 2020-08-19 Arizona 4 195568 4643
## 9313 2020-08-19 Arkansas 5 54216 631
## 9314 2020-08-19 California 6 646742 11686
## 9315 2020-08-19 Colorado 8 53943 1906
## 9316 2020-08-19 Connecticut 9 51314 4457
## 9317 2020-08-19 Delaware 10 16643 595
## 9318 2020-08-19 District of Columbia 11 13354 600
## 9319 2020-08-19 Florida 12 584039 9931
## 9320 2020-08-19 Georgia 13 227255 4744
## 9321 2020-08-19 Guam 66 1568 6
## 9322 2020-08-19 Hawaii 15 5586 41
## 9323 2020-08-19 Idaho 16 28829 292
## 9324 2020-08-19 Illinois 17 213888 8037
## 9325 2020-08-19 Indiana 18 84308 3180
## 9326 2020-08-19 Iowa 19 53541 1011
## 9327 2020-08-19 Kansas 20 36333 420
## 9328 2020-08-19 Kentucky 21 42958 866
## 9329 2020-08-19 Louisiana 22 140044 4609
## 9330 2020-08-19 Maine 23 4234 127
## 9331 2020-08-19 Maryland 24 102215 3661
## 9332 2020-08-19 Massachusetts 25 124415 8876
## 9333 2020-08-19 Michigan 26 104235 6619
## 9334 2020-08-19 Minnesota 27 66664 1784
## 9335 2020-08-19 Mississippi 28 74555 2163
## 9336 2020-08-19 Missouri 29 71802 1490
## 9337 2020-08-19 Montana 30 5976 84
## 9338 2020-08-19 Nebraska 31 31040 373
## 9339 2020-08-19 Nevada 32 63127 1135
## 9340 2020-08-19 New Hampshire 33 7036 427
## 9341 2020-08-19 New Jersey 34 190256 15926
## 9342 2020-08-19 New Mexico 35 23749 729
## 9343 2020-08-19 New York 36 431924 32451
## 9344 2020-08-19 North Carolina 37 148491 2464
## 9345 2020-08-19 North Dakota 38 8972 134
## 9346 2020-08-19 Northern Mariana Islands 69 54 2
## 9347 2020-08-19 Ohio 39 110881 3907
## 9348 2020-08-19 Oklahoma 40 49923 699
## 9349 2020-08-19 Oregon 41 23887 408
## 9350 2020-08-19 Pennsylvania 42 130950 7593
## 9351 2020-08-19 Puerto Rico 72 27934 356
## 9352 2020-08-19 Rhode Island 44 20795 1027
## 9353 2020-08-19 South Carolina 45 108411 2360
## 9354 2020-08-19 South Dakota 46 10566 155
## 9355 2020-08-19 Tennessee 47 134810 1437
## 9356 2020-08-19 Texas 48 582623 11043
## 9357 2020-08-19 Utah 49 47647 379
## 9358 2020-08-19 Vermont 50 1533 58
## 9359 2020-08-19 Virgin Islands 78 828 9
## 9360 2020-08-19 Virginia 51 109019 2410
## 9361 2020-08-19 Washington 53 71594 1910
## 9362 2020-08-19 West Virginia 54 8801 166
## 9363 2020-08-19 Wisconsin 55 72204 1071
## 9364 2020-08-19 Wyoming 56 3430 34
## 9365 2020-08-20 Alabama 1 112449 1974
## 9366 2020-08-20 Alaska 2 5330 27
## 9367 2020-08-20 Arizona 4 196305 4688
## 9368 2020-08-20 Arkansas 5 54765 641
## 9369 2020-08-20 California 6 653401 11801
## 9370 2020-08-20 Colorado 8 54285 1909
## 9371 2020-08-20 Connecticut 9 51432 4458
## 9372 2020-08-20 Delaware 10 16718 595
## 9373 2020-08-20 District of Columbia 11 13409 601
## 9374 2020-08-20 Florida 12 588594 10048
## 9375 2020-08-20 Georgia 13 230288 4797
## 9376 2020-08-20 Guam 66 1673 7
## 9377 2020-08-20 Hawaii 15 5821 44
## 9378 2020-08-20 Idaho 16 29252 299
## 9379 2020-08-20 Illinois 17 215889 8064
## 9380 2020-08-20 Indiana 18 85257 3191
## 9381 2020-08-20 Iowa 19 54533 1016
## 9382 2020-08-20 Kansas 20 36445 423
## 9383 2020-08-20 Kentucky 21 43700 881
## 9384 2020-08-20 Louisiana 22 140962 4637
## 9385 2020-08-20 Maine 23 4252 128
## 9386 2020-08-20 Maryland 24 102783 3669
## 9387 2020-08-20 Massachusetts 25 124728 8888
## 9388 2020-08-20 Michigan 26 104771 6636
## 9389 2020-08-20 Minnesota 27 67354 1791
## 9390 2020-08-20 Mississippi 28 75449 2190
## 9391 2020-08-20 Missouri 29 72912 1508
## 9392 2020-08-20 Montana 30 6095 89
## 9393 2020-08-20 Nebraska 31 31348 377
## 9394 2020-08-20 Nevada 32 63699 1175
## 9395 2020-08-20 New Hampshire 33 7050 428
## 9396 2020-08-20 New Jersey 34 190356 15932
## 9397 2020-08-20 New Mexico 35 23951 734
## 9398 2020-08-20 New York 36 432523 32451
## 9399 2020-08-20 North Carolina 37 150422 2496
## 9400 2020-08-20 North Dakota 38 9246 134
## 9401 2020-08-20 Northern Mariana Islands 69 54 2
## 9402 2020-08-20 Ohio 39 112003 3929
## 9403 2020-08-20 Oklahoma 40 50669 709
## 9404 2020-08-20 Oregon 41 24176 412
## 9405 2020-08-20 Pennsylvania 42 131736 7606
## 9406 2020-08-20 Puerto Rico 72 28143 367
## 9407 2020-08-20 Rhode Island 44 20871 1028
## 9408 2020-08-20 South Carolina 45 109320 2401
## 9409 2020-08-20 South Dakota 46 10691 157
## 9410 2020-08-20 Tennessee 47 136260 1470
## 9411 2020-08-20 Texas 48 587900 11248
## 9412 2020-08-20 Utah 49 48103 384
## 9413 2020-08-20 Vermont 50 1537 58
## 9414 2020-08-20 Virgin Islands 78 869 10
## 9415 2020-08-20 Virginia 51 109895 2427
## 9416 2020-08-20 Washington 53 72284 1924
## 9417 2020-08-20 West Virginia 54 8982 166
## 9418 2020-08-20 Wisconsin 55 73067 1077
## 9419 2020-08-20 Wyoming 56 3468 34
## 9420 2020-08-21 Alabama 1 113632 1996
## 9421 2020-08-21 Alaska 2 5401 28
## 9422 2020-08-21 Arizona 4 196925 4698
## 9423 2020-08-21 Arkansas 5 55652 663
## 9424 2020-08-21 California 6 659991 11984
## 9425 2020-08-21 Colorado 8 54658 1915
## 9426 2020-08-21 Connecticut 9 51519 4460
## 9427 2020-08-21 Delaware 10 16770 600
## 9428 2020-08-21 District of Columbia 11 13469 602
## 9429 2020-08-21 Florida 12 593278 10167
## 9430 2020-08-21 Georgia 13 233169 4889
## 9431 2020-08-21 Guam 66 1736 7
## 9432 2020-08-21 Hawaii 15 6049 45
## 9433 2020-08-21 Idaho 16 29510 305
## 9434 2020-08-21 Illinois 17 218111 8086
## 9435 2020-08-21 Indiana 18 86312 3208
## 9436 2020-08-21 Iowa 19 55331 1030
## 9437 2020-08-21 Kansas 20 37411 430
## 9438 2020-08-21 Kentucky 21 44432 887
## 9439 2020-08-21 Louisiana 22 141861 4687
## 9440 2020-08-21 Maine 23 4285 129
## 9441 2020-08-21 Maryland 24 103461 3674
## 9442 2020-08-21 Massachusetts 25 125216 8901
## 9443 2020-08-21 Michigan 26 104829 6637
## 9444 2020-08-21 Minnesota 27 68179 1799
## 9445 2020-08-21 Mississippi 28 76323 2214
## 9446 2020-08-21 Missouri 29 74221 1511
## 9447 2020-08-21 Montana 30 6239 90
## 9448 2020-08-21 Nebraska 31 31626 381
## 9449 2020-08-21 Nevada 32 64573 1185
## 9450 2020-08-21 New Hampshire 33 7071 428
## 9451 2020-08-21 New Jersey 34 190646 15941
## 9452 2020-08-21 New Mexico 35 24095 739
## 9453 2020-08-21 New York 36 433230 32456
## 9454 2020-08-21 North Carolina 37 152344 2522
## 9455 2020-08-21 North Dakota 38 9478 136
## 9456 2020-08-21 Northern Mariana Islands 69 54 2
## 9457 2020-08-21 Ohio 39 113046 3955
## 9458 2020-08-21 Oklahoma 40 51746 715
## 9459 2020-08-21 Oregon 41 24435 421
## 9460 2020-08-21 Pennsylvania 42 132461 7629
## 9461 2020-08-21 Puerto Rico 72 28846 374
## 9462 2020-08-21 Rhode Island 44 21022 1030
## 9463 2020-08-21 South Carolina 45 110378 2459
## 9464 2020-08-21 South Dakota 46 10884 159
## 9465 2020-08-21 Tennessee 47 137932 1528
## 9466 2020-08-21 Texas 48 593405 11483
## 9467 2020-08-21 Utah 49 48616 385
## 9468 2020-08-21 Vermont 50 1541 58
## 9469 2020-08-21 Virgin Islands 78 960 10
## 9470 2020-08-21 Virginia 51 110860 2436
## 9471 2020-08-21 Washington 53 72787 1937
## 9472 2020-08-21 West Virginia 54 9066 170
## 9473 2020-08-21 Wisconsin 55 73895 1079
## 9474 2020-08-21 Wyoming 56 3524 37
## 9475 2020-08-22 Alabama 1 114532 2011
## 9476 2020-08-22 Alaska 2 5492 29
## 9477 2020-08-22 Arizona 4 197909 4760
## 9478 2020-08-22 Arkansas 5 56199 674
## 9479 2020-08-22 California 6 665325 12137
## 9480 2020-08-22 Colorado 8 54939 1923
## 9481 2020-08-22 Connecticut 9 51519 4460
## 9482 2020-08-22 Delaware 10 16828 600
## 9483 2020-08-22 District of Columbia 11 13534 604
## 9484 2020-08-22 Florida 12 597589 10273
## 9485 2020-08-22 Georgia 13 235783 4982
## 9486 2020-08-22 Guam 66 1736 7
## 9487 2020-08-22 Hawaii 15 6333 46
## 9488 2020-08-22 Idaho 16 29808 307
## 9489 2020-08-22 Illinois 17 220459 8107
## 9490 2020-08-22 Indiana 18 87325 3218
## 9491 2020-08-22 Iowa 19 55996 1033
## 9492 2020-08-22 Kansas 20 37544 431
## 9493 2020-08-22 Kentucky 21 45225 899
## 9494 2020-08-22 Louisiana 22 141861 4687
## 9495 2020-08-22 Maine 23 4317 130
## 9496 2020-08-22 Maryland 24 104040 3685
## 9497 2020-08-22 Massachusetts 25 125360 8921
## 9498 2020-08-22 Michigan 26 106141 6657
## 9499 2020-08-22 Minnesota 27 68913 1807
## 9500 2020-08-22 Mississippi 28 77268 2237
## 9501 2020-08-22 Missouri 29 75468 1519
## 9502 2020-08-22 Montana 30 6392 90
## 9503 2020-08-22 Nebraska 31 31780 382
## 9504 2020-08-22 Nevada 32 65150 1197
## 9505 2020-08-22 New Hampshire 33 7092 429
## 9506 2020-08-22 New Jersey 34 191175 15943
## 9507 2020-08-22 New Mexico 35 24302 743
## 9508 2020-08-22 New York 36 433881 32464
## 9509 2020-08-22 North Carolina 37 153966 2546
## 9510 2020-08-22 North Dakota 38 9740 139
## 9511 2020-08-22 Northern Mariana Islands 69 54 2
## 9512 2020-08-22 Ohio 39 114165 3975
## 9513 2020-08-22 Oklahoma 40 52599 725
## 9514 2020-08-22 Oregon 41 24711 422
## 9515 2020-08-22 Pennsylvania 42 133160 7643
## 9516 2020-08-22 Puerto Rico 72 29577 381
## 9517 2020-08-22 Rhode Island 44 21022 1030
## 9518 2020-08-22 South Carolina 45 111295 2493
## 9519 2020-08-22 South Dakota 46 11135 160
## 9520 2020-08-22 Tennessee 47 139366 1542
## 9521 2020-08-22 Texas 48 599156 11650
## 9522 2020-08-22 Utah 49 48950 387
## 9523 2020-08-22 Vermont 50 1553 58
## 9524 2020-08-22 Virgin Islands 78 960 10
## 9525 2020-08-22 Virginia 51 112072 2443
## 9526 2020-08-22 Washington 53 73353 1944
## 9527 2020-08-22 West Virginia 54 9185 176
## 9528 2020-08-22 Wisconsin 55 74740 1092
## 9529 2020-08-22 Wyoming 56 3543 37
## 9530 2020-08-23 Alabama 1 115060 2013
## 9531 2020-08-23 Alaska 2 5556 30
## 9532 2020-08-23 Arizona 4 198117 4775
## 9533 2020-08-23 Arkansas 5 56574 687
## 9534 2020-08-23 California 6 669944 12152
## 9535 2020-08-23 Colorado 8 55441 1925
## 9536 2020-08-23 Connecticut 9 51519 4460
## 9537 2020-08-23 Delaware 10 16895 600
## 9538 2020-08-23 District of Columbia 11 13590 604
## 9539 2020-08-23 Florida 12 600563 10324
## 9540 2020-08-23 Georgia 13 237402 5021
## 9541 2020-08-23 Guam 66 1736 7
## 9542 2020-08-23 Hawaii 15 6577 46
## 9543 2020-08-23 Idaho 16 29973 308
## 9544 2020-08-23 Illinois 17 222292 8114
## 9545 2020-08-23 Indiana 18 87942 3220
## 9546 2020-08-23 Iowa 19 56441 1037
## 9547 2020-08-23 Kansas 20 37726 431
## 9548 2020-08-23 Kentucky 21 45401 901
## 9549 2020-08-23 Louisiana 22 143084 4746
## 9550 2020-08-23 Maine 23 4335 131
## 9551 2020-08-23 Maryland 24 104618 3691
## 9552 2020-08-23 Massachusetts 25 125360 8921
## 9553 2020-08-23 Michigan 26 106875 6661
## 9554 2020-08-23 Minnesota 27 69630 1813
## 9555 2020-08-23 Mississippi 28 77894 2240
## 9556 2020-08-23 Missouri 29 76339 1519
## 9557 2020-08-23 Montana 30 6444 90
## 9558 2020-08-23 Nebraska 31 31889 384
## 9559 2020-08-23 Nevada 32 65678 1199
## 9560 2020-08-23 New Hampshire 33 7107 429
## 9561 2020-08-23 New Jersey 34 191323 15946
## 9562 2020-08-23 New Mexico 35 24396 745
## 9563 2020-08-23 New York 36 434462 32482
## 9564 2020-08-23 North Carolina 37 155390 2560
## 9565 2020-08-23 North Dakota 38 9880 140
## 9566 2020-08-23 Northern Mariana Islands 69 54 2
## 9567 2020-08-23 Ohio 39 114802 3978
## 9568 2020-08-23 Oklahoma 40 53165 726
## 9569 2020-08-23 Oregon 41 24938 422
## 9570 2020-08-23 Pennsylvania 42 133679 7643
## 9571 2020-08-23 Puerto Rico 72 29896 390
## 9572 2020-08-23 Rhode Island 44 21022 1030
## 9573 2020-08-23 South Carolina 45 111988 2504
## 9574 2020-08-23 South Dakota 46 11276 161
## 9575 2020-08-23 Tennessee 47 141000 1547
## 9576 2020-08-23 Texas 48 602144 11760
## 9577 2020-08-23 Utah 49 49125 387
## 9578 2020-08-23 Vermont 50 1557 58
## 9579 2020-08-23 Virgin Islands 78 984 11
## 9580 2020-08-23 Virginia 51 112966 2467
## 9581 2020-08-23 Washington 53 73745 1948
## 9582 2020-08-23 West Virginia 54 9272 178
## 9583 2020-08-23 Wisconsin 55 75205 1092
## 9584 2020-08-23 Wyoming 56 3579 37
## 9585 2020-08-24 Alabama 1 116710 2024
## 9586 2020-08-24 Alaska 2 5626 30
## 9587 2020-08-24 Arizona 4 198421 4775
## 9588 2020-08-24 Arkansas 5 56894 696
## 9589 2020-08-24 California 6 676236 12250
## 9590 2020-08-24 Colorado 8 55700 1926
## 9591 2020-08-24 Connecticut 9 52011 4460
## 9592 2020-08-24 Delaware 10 16942 604
## 9593 2020-08-24 District of Columbia 11 13639 604
## 9594 2020-08-24 Florida 12 602821 10396
## 9595 2020-08-24 Georgia 13 239612 5045
## 9596 2020-08-24 Guam 66 1876 8
## 9597 2020-08-24 Hawaii 15 6746 48
## 9598 2020-08-24 Idaho 16 30260 315
## 9599 2020-08-24 Illinois 17 224056 8123
## 9600 2020-08-24 Indiana 18 89602 3225
## 9601 2020-08-24 Iowa 19 56941 1047
## 9602 2020-08-24 Kansas 20 39008 432
## 9603 2020-08-24 Kentucky 21 46057 909
## 9604 2020-08-24 Louisiana 22 143707 4764
## 9605 2020-08-24 Maine 23 4356 131
## 9606 2020-08-24 Maryland 24 105168 3694
## 9607 2020-08-24 Massachusetts 25 126022 8949
## 9608 2020-08-24 Michigan 26 107816 6665
## 9609 2020-08-24 Minnesota 27 70344 1817
## 9610 2020-08-24 Mississippi 28 78405 2248
## 9611 2020-08-24 Missouri 29 77254 1533
## 9612 2020-08-24 Montana 30 6510 91
## 9613 2020-08-24 Nebraska 31 32047 384
## 9614 2020-08-24 Nevada 32 66073 1200
## 9615 2020-08-24 New Hampshire 33 7134 429
## 9616 2020-08-24 New Jersey 34 191548 15946
## 9617 2020-08-24 New Mexico 35 24469 747
## 9618 2020-08-24 New York 36 434866 32489
## 9619 2020-08-24 North Carolina 37 156927 2567
## 9620 2020-08-24 North Dakota 38 10004 141
## 9621 2020-08-24 Northern Mariana Islands 69 54 2
## 9622 2020-08-24 Ohio 39 115651 3986
## 9623 2020-08-24 Oklahoma 40 53522 730
## 9624 2020-08-24 Oregon 41 25174 432
## 9625 2020-08-24 Pennsylvania 42 134246 7642
## 9626 2020-08-24 Puerto Rico 72 30618 390
## 9627 2020-08-24 Rhode Island 44 21302 1035
## 9628 2020-08-24 South Carolina 45 112551 2511
## 9629 2020-08-24 South Dakota 46 11425 161
## 9630 2020-08-24 Tennessee 47 141675 1578
## 9631 2020-08-24 Texas 48 607621 11824
## 9632 2020-08-24 Utah 49 49451 391
## 9633 2020-08-24 Vermont 50 1566 58
## 9634 2020-08-24 Virgin Islands 78 998 12
## 9635 2020-08-24 Virginia 51 113630 2471
## 9636 2020-08-24 Washington 53 74292 1953
## 9637 2020-08-24 West Virginia 54 9312 179
## 9638 2020-08-24 Wisconsin 55 75755 1093
## 9639 2020-08-24 Wyoming 56 3603 37
## 9640 2020-08-25 Alabama 1 117242 2037
## 9641 2020-08-25 Alaska 2 5621 33
## 9642 2020-08-25 Arizona 4 199293 4796
## 9643 2020-08-25 Arkansas 5 57374 711
## 9644 2020-08-25 California 6 682320 12409
## 9645 2020-08-25 Colorado 8 56176 1932
## 9646 2020-08-25 Connecticut 9 52040 4463
## 9647 2020-08-25 Delaware 10 16962 603
## 9648 2020-08-25 District of Columbia 11 13684 604
## 9649 2020-08-25 Florida 12 605494 10579
## 9650 2020-08-25 Georgia 13 241865 5147
## 9651 2020-08-25 Guam 66 1953 8
## 9652 2020-08-25 Hawaii 15 6961 48
## 9653 2020-08-25 Idaho 16 30648 328
## 9654 2020-08-25 Illinois 17 225812 8155
## 9655 2020-08-25 Indiana 18 90460 3241
## 9656 2020-08-25 Iowa 19 57606 1059
## 9657 2020-08-25 Kansas 20 39089 433
## 9658 2020-08-25 Kentucky 21 46798 918
## 9659 2020-08-25 Louisiana 22 144257 4797
## 9660 2020-08-25 Maine 23 4368 131
## 9661 2020-08-25 Maryland 24 105554 3707
## 9662 2020-08-25 Massachusetts 25 126420 8961
## 9663 2020-08-25 Michigan 26 108742 6687
## 9664 2020-08-25 Minnesota 27 70753 1825
## 9665 2020-08-25 Mississippi 28 79206 2315
## 9666 2020-08-25 Missouri 29 78246 1553
## 9667 2020-08-25 Montana 30 6649 97
## 9668 2020-08-25 Nebraska 31 32379 386
## 9669 2020-08-25 Nevada 32 66515 1230
## 9670 2020-08-25 New Hampshire 33 7150 429
## 9671 2020-08-25 New Jersey 34 191850 15953
## 9672 2020-08-25 New Mexico 35 24535 750
## 9673 2020-08-25 New York 36 435495 32495
## 9674 2020-08-25 North Carolina 37 158185 2607
## 9675 2020-08-25 North Dakota 38 10233 142
## 9676 2020-08-25 Northern Mariana Islands 69 54 2
## 9677 2020-08-25 Ohio 39 116495 3996
## 9678 2020-08-25 Oklahoma 40 54172 744
## 9679 2020-08-25 Oregon 41 25408 436
## 9680 2020-08-25 Pennsylvania 42 134803 7666
## 9681 2020-08-25 Puerto Rico 72 30720 395
## 9682 2020-08-25 Rhode Island 44 21372 1039
## 9683 2020-08-25 South Carolina 45 113488 2529
## 9684 2020-08-25 South Dakota 46 11507 161
## 9685 2020-08-25 Tennessee 47 142501 1605
## 9686 2020-08-25 Texas 48 613707 12012
## 9687 2020-08-25 Utah 49 49870 398
## 9688 2020-08-25 Vermont 50 1572 58
## 9689 2020-08-25 Virgin Islands 78 1030 14
## 9690 2020-08-25 Virginia 51 114635 2494
## 9691 2020-08-25 Washington 53 74634 1962
## 9692 2020-08-25 West Virginia 54 9395 187
## 9693 2020-08-25 Wisconsin 55 76453 1106
## 9694 2020-08-25 Wyoming 56 3634 37
## 9695 2020-08-26 Alabama 1 119254 2045
## 9696 2020-08-26 Alaska 2 5671 34
## 9697 2020-08-26 Arizona 4 199495 4899
## 9698 2020-08-26 Arkansas 5 58023 732
## 9699 2020-08-26 California 6 687612 12547
## 9700 2020-08-26 Colorado 8 56346 1933
## 9701 2020-08-26 Connecticut 9 52220 4463
## 9702 2020-08-26 Delaware 10 16986 604
## 9703 2020-08-26 District of Columbia 11 13722 605
## 9704 2020-08-26 Florida 12 608714 10732
## 9705 2020-08-26 Georgia 13 244494 5195
## 9706 2020-08-26 Guam 66 2089 10
## 9707 2020-08-26 Hawaii 15 7236 50
## 9708 2020-08-26 Idaho 16 30968 337
## 9709 2020-08-26 Illinois 17 227872 8186
## 9710 2020-08-26 Indiana 18 91403 3259
## 9711 2020-08-26 Iowa 19 58864 1077
## 9712 2020-08-26 Kansas 20 40564 445
## 9713 2020-08-26 Kentucky 21 47542 927
## 9714 2020-08-26 Louisiana 22 145661 4851
## 9715 2020-08-26 Maine 23 4389 132
## 9716 2020-08-26 Maryland 24 105996 3717
## 9717 2020-08-26 Massachusetts 25 126756 8987
## 9718 2020-08-26 Michigan 26 109645 6692
## 9719 2020-08-26 Minnesota 27 71285 1842
## 9720 2020-08-26 Mississippi 28 80110 2373
## 9721 2020-08-26 Missouri 29 79588 1566
## 9722 2020-08-26 Montana 30 6807 98
## 9723 2020-08-26 Nebraska 31 32727 390
## 9724 2020-08-26 Nevada 32 66732 1250
## 9725 2020-08-26 New Hampshire 33 7159 430
## 9726 2020-08-26 New Jersey 34 192086 15914
## 9727 2020-08-26 New Mexico 35 24732 755
## 9728 2020-08-26 New York 36 436063 32499
## 9729 2020-08-26 North Carolina 37 159708 2634
## 9730 2020-08-26 North Dakota 38 10471 142
## 9731 2020-08-26 Northern Mariana Islands 69 54 2
## 9732 2020-08-26 Ohio 39 117584 4044
## 9733 2020-08-26 Oklahoma 40 54838 763
## 9734 2020-08-26 Oregon 41 25575 438
## 9735 2020-08-26 Pennsylvania 42 135323 7691
## 9736 2020-08-26 Puerto Rico 72 30744 404
## 9737 2020-08-26 Rhode Island 44 21454 1041
## 9738 2020-08-26 South Carolina 45 114093 2573
## 9739 2020-08-26 South Dakota 46 11627 162
## 9740 2020-08-26 Tennessee 47 144400 1623
## 9741 2020-08-26 Texas 48 619836 12212
## 9742 2020-08-26 Utah 49 50298 404
## 9743 2020-08-26 Vermont 50 1577 58
## 9744 2020-08-26 Virgin Islands 78 1030 14
## 9745 2020-08-26 Virginia 51 115458 2515
## 9746 2020-08-26 Washington 53 75207 1968
## 9747 2020-08-26 West Virginia 54 9540 190
## 9748 2020-08-26 Wisconsin 55 77220 1112
## 9749 2020-08-26 Wyoming 56 3684 37
## 9750 2020-08-27 Alabama 1 121023 2076
## 9751 2020-08-27 Alaska 2 5752 34
## 9752 2020-08-27 Arizona 4 200172 4932
## 9753 2020-08-27 Arkansas 5 58745 739
## 9754 2020-08-27 California 6 692964 12696
## 9755 2020-08-27 Colorado 8 56706 1937
## 9756 2020-08-27 Connecticut 9 52350 4465
## 9757 2020-08-27 Delaware 10 16976 604
## 9758 2020-08-27 District of Columbia 11 13794 605
## 9759 2020-08-27 Florida 12 611983 10867
## 9760 2020-08-27 Georgia 13 247017 5275
## 9761 2020-08-27 Guam 66 2201 10
## 9762 2020-08-27 Hawaii 15 7542 54
## 9763 2020-08-27 Idaho 16 31326 343
## 9764 2020-08-27 Illinois 17 229598 8206
## 9765 2020-08-27 Indiana 18 92566 3266
## 9766 2020-08-27 Iowa 19 61484 1091
## 9767 2020-08-27 Kansas 20 40702 446
## 9768 2020-08-27 Kentucky 21 48322 937
## 9769 2020-08-27 Louisiana 22 146338 4874
## 9770 2020-08-27 Maine 23 4414 132
## 9771 2020-08-27 Maryland 24 106558 3722
## 9772 2020-08-27 Massachusetts 25 127124 9008
## 9773 2020-08-27 Michigan 26 110491 6708
## 9774 2020-08-27 Minnesota 27 72439 1855
## 9775 2020-08-27 Mississippi 28 80695 2399
## 9776 2020-08-27 Missouri 29 80913 1583
## 9777 2020-08-27 Montana 30 6960 98
## 9778 2020-08-27 Nebraska 31 33101 394
## 9779 2020-08-27 Nevada 32 67324 1274
## 9780 2020-08-27 New Hampshire 33 7194 431
## 9781 2020-08-27 New Jersey 34 192393 15921
## 9782 2020-08-27 New Mexico 35 24920 764
## 9783 2020-08-27 New York 36 436852 32507
## 9784 2020-08-27 North Carolina 37 161715 2654
## 9785 2020-08-27 North Dakota 38 10804 143
## 9786 2020-08-27 Northern Mariana Islands 69 54 2
## 9787 2020-08-27 Ohio 39 118828 4076
## 9788 2020-08-27 Oklahoma 40 55550 778
## 9789 2020-08-27 Oregon 41 25775 444
## 9790 2020-08-27 Pennsylvania 42 135958 7702
## 9791 2020-08-27 Puerto Rico 72 31383 412
## 9792 2020-08-27 Rhode Island 44 21589 1044
## 9793 2020-08-27 South Carolina 45 114598 2628
## 9794 2020-08-27 South Dakota 46 12194 162
## 9795 2020-08-27 Tennessee 47 146183 1650
## 9796 2020-08-27 Texas 48 623647 12444
## 9797 2020-08-27 Utah 49 50668 404
## 9798 2020-08-27 Vermont 50 1586 58
## 9799 2020-08-27 Virgin Islands 78 1075 14
## 9800 2020-08-27 Virginia 51 116579 2527
## 9801 2020-08-27 Washington 53 75752 1977
## 9802 2020-08-27 West Virginia 54 9633 199
## 9803 2020-08-27 Wisconsin 55 78136 1121
## 9804 2020-08-27 Wyoming 56 3722 37
## 9805 2020-08-28 Alabama 1 122185 2107
## 9806 2020-08-28 Alaska 2 5874 34
## 9807 2020-08-28 Arizona 4 200694 4980
## 9808 2020-08-28 Arkansas 5 59583 756
## 9809 2020-08-28 California 6 698391 12836
## 9810 2020-08-28 Colorado 8 57158 1945
## 9811 2020-08-28 Connecticut 9 52495 4465
## 9812 2020-08-28 Delaware 10 17083 604
## 9813 2020-08-28 District of Columbia 11 13851 605
## 9814 2020-08-28 Florida 12 615798 10956
## 9815 2020-08-28 Georgia 13 249317 5352
## 9816 2020-08-28 Guam 66 2256 11
## 9817 2020-08-28 Hawaii 15 7806 58
## 9818 2020-08-28 Idaho 16 31643 357
## 9819 2020-08-28 Illinois 17 232052 8229
## 9820 2020-08-28 Indiana 18 93387 3277
## 9821 2020-08-28 Iowa 19 62828 1108
## 9822 2020-08-28 Kansas 20 41808 448
## 9823 2020-08-28 Kentucky 21 48937 945
## 9824 2020-08-28 Louisiana 22 146944 4904
## 9825 2020-08-28 Maine 23 4436 132
## 9826 2020-08-28 Maryland 24 107146 3736
## 9827 2020-08-28 Massachusetts 25 127584 9024
## 9828 2020-08-28 Michigan 26 111303 6714
## 9829 2020-08-28 Minnesota 27 73289 1859
## 9830 2020-08-28 Mississippi 28 81294 2413
## 9831 2020-08-28 Missouri 29 82449 1599
## 9832 2020-08-28 Montana 30 7086 100
## 9833 2020-08-28 Nebraska 31 33436 399
## 9834 2020-08-28 Nevada 32 67984 1287
## 9835 2020-08-28 New Hampshire 33 7216 432
## 9836 2020-08-28 New Jersey 34 192751 15930
## 9837 2020-08-28 New Mexico 35 25042 767
## 9838 2020-08-28 New York 36 437487 32515
## 9839 2020-08-28 North Carolina 37 163154 2676
## 9840 2020-08-28 North Dakota 38 11114 143
## 9841 2020-08-28 Northern Mariana Islands 69 54 2
## 9842 2020-08-28 Ohio 39 120124 4105
## 9843 2020-08-28 Oklahoma 40 56260 786
## 9844 2020-08-28 Oregon 41 26069 457
## 9845 2020-08-28 Pennsylvania 42 136824 7722
## 9846 2020-08-28 Puerto Rico 72 31988 424
## 9847 2020-08-28 Rhode Island 44 21683 1046
## 9848 2020-08-28 South Carolina 45 115951 2655
## 9849 2020-08-28 South Dakota 46 12517 165
## 9850 2020-08-28 Tennessee 47 147814 1675
## 9851 2020-08-28 Texas 48 628492 12615
## 9852 2020-08-28 Utah 49 51071 408
## 9853 2020-08-28 Vermont 50 1589 58
## 9854 2020-08-28 Virgin Islands 78 1075 14
## 9855 2020-08-28 Virginia 51 117592 2550
## 9856 2020-08-28 Washington 53 76397 1992
## 9857 2020-08-28 West Virginia 54 9824 202
## 9858 2020-08-28 Wisconsin 55 78984 1123
## 9859 2020-08-28 Wyoming 56 3763 37
## 9860 2020-08-29 Alabama 1 123889 2152
## 9861 2020-08-29 Alaska 2 5985 34
## 9862 2020-08-29 Arizona 4 201317 5010
## 9863 2020-08-29 Arkansas 5 60378 772
## 9864 2020-08-29 California 6 702500 12906
## 9865 2020-08-29 Colorado 8 57326 1946
## 9866 2020-08-29 Connecticut 9 52495 4465
## 9867 2020-08-29 Delaware 10 17349 604
## 9868 2020-08-29 District of Columbia 11 13925 605
## 9869 2020-08-29 Florida 12 618995 11104
## 9870 2020-08-29 Georgia 13 251676 5451
## 9871 2020-08-29 Guam 66 2256 11
## 9872 2020-08-29 Hawaii 15 8115 61
## 9873 2020-08-29 Idaho 16 31874 359
## 9874 2020-08-29 Illinois 17 233806 8236
## 9875 2020-08-29 Indiana 18 94512 3285
## 9876 2020-08-29 Iowa 19 63836 1110
## 9877 2020-08-29 Kansas 20 41909 449
## 9878 2020-08-29 Kentucky 21 49914 951
## 9879 2020-08-29 Louisiana 22 146944 4904
## 9880 2020-08-29 Maine 23 4489 132
## 9881 2020-08-29 Maryland 24 107790 3746
## 9882 2020-08-29 Massachusetts 25 128030 9036
## 9883 2020-08-29 Michigan 26 112104 6747
## 9884 2020-08-29 Minnesota 27 74306 1863
## 9885 2020-08-29 Mississippi 28 82029 2427
## 9886 2020-08-29 Missouri 29 83973 1613
## 9887 2020-08-29 Montana 30 7256 104
## 9888 2020-08-29 Nebraska 31 33753 400
## 9889 2020-08-29 Nevada 32 68576 1303
## 9890 2020-08-29 New Hampshire 33 7246 432
## 9891 2020-08-29 New Jersey 34 193100 15933
## 9892 2020-08-29 New Mexico 35 25178 769
## 9893 2020-08-29 New York 36 438122 32522
## 9894 2020-08-29 North Carolina 37 165533 2708
## 9895 2020-08-29 North Dakota 38 11488 145
## 9896 2020-08-29 Northern Mariana Islands 69 56 2
## 9897 2020-08-29 Ohio 39 121340 4126
## 9898 2020-08-29 Oklahoma 40 57353 797
## 9899 2020-08-29 Oregon 41 26293 460
## 9900 2020-08-29 Pennsylvania 42 137576 7740
## 9901 2020-08-29 Puerto Rico 72 32550 428
## 9902 2020-08-29 Rhode Island 44 21683 1046
## 9903 2020-08-29 South Carolina 45 117249 2698
## 9904 2020-08-29 South Dakota 46 12942 167
## 9905 2020-08-29 Tennessee 47 149310 1700
## 9906 2020-08-29 Texas 48 633834 12733
## 9907 2020-08-29 Utah 49 51486 408
## 9908 2020-08-29 Vermont 50 1605 58
## 9909 2020-08-29 Virgin Islands 78 1129 14
## 9910 2020-08-29 Virginia 51 118809 2568
## 9911 2020-08-29 Washington 53 76834 1992
## 9912 2020-08-29 West Virginia 54 9967 212
## 9913 2020-08-29 Wisconsin 55 79767 1129
## 9914 2020-08-29 Wyoming 56 3784 37
## 9915 2020-08-30 Alabama 1 125235 2162
## 9916 2020-08-30 Alaska 2 6036 34
## 9917 2020-08-30 Arizona 4 201695 5033
## 9918 2020-08-30 Arkansas 5 60856 784
## 9919 2020-08-30 California 6 706589 12939
## 9920 2020-08-30 Colorado 8 57515 1945
## 9921 2020-08-30 Connecticut 9 52495 4465
## 9922 2020-08-30 Delaware 10 17343 604
## 9923 2020-08-30 District of Columbia 11 13959 606
## 9924 2020-08-30 Florida 12 621578 11118
## 9925 2020-08-30 Georgia 13 252813 5478
## 9926 2020-08-30 Guam 66 2256 11
## 9927 2020-08-30 Hawaii 15 8315 62
## 9928 2020-08-30 Idaho 16 32034 360
## 9929 2020-08-30 Illinois 17 235779 8248
## 9930 2020-08-30 Indiana 18 95394 3291
## 9931 2020-08-30 Iowa 19 64599 1113
## 9932 2020-08-30 Kansas 20 42011 450
## 9933 2020-08-30 Kentucky 21 50170 955
## 9934 2020-08-30 Louisiana 22 148568 4931
## 9935 2020-08-30 Maine 23 4512 132
## 9936 2020-08-30 Maryland 24 108286 3752
## 9937 2020-08-30 Massachusetts 25 128229 9049
## 9938 2020-08-30 Michigan 26 112598 6750
## 9939 2020-08-30 Minnesota 27 75238 1865
## 9940 2020-08-30 Mississippi 28 82676 2441
## 9941 2020-08-30 Missouri 29 85133 1615
## 9942 2020-08-30 Montana 30 7340 104
## 9943 2020-08-30 Nebraska 31 34046 400
## 9944 2020-08-30 Nevada 32 68981 1305
## 9945 2020-08-30 New Hampshire 33 7254 432
## 9946 2020-08-30 New Jersey 34 193391 15937
## 9947 2020-08-30 New Mexico 35 25283 770
## 9948 2020-08-30 New York 36 438831 32534
## 9949 2020-08-30 North Carolina 37 166510 2721
## 9950 2020-08-30 North Dakota 38 11706 146
## 9951 2020-08-30 Northern Mariana Islands 69 56 2
## 9952 2020-08-30 Ohio 39 122262 4128
## 9953 2020-08-30 Oklahoma 40 58020 799
## 9954 2020-08-30 Oregon 41 26554 463
## 9955 2020-08-30 Pennsylvania 42 138137 7742
## 9956 2020-08-30 Puerto Rico 72 32848 434
## 9957 2020-08-30 Rhode Island 44 21683 1046
## 9958 2020-08-30 South Carolina 45 118324 2709
## 9959 2020-08-30 South Dakota 46 13322 167
## 9960 2020-08-30 Tennessee 47 150249 1722
## 9961 2020-08-30 Texas 48 636547 12807
## 9962 2020-08-30 Utah 49 51854 408
## 9963 2020-08-30 Vermont 50 1616 58
## 9964 2020-08-30 Virgin Islands 78 1134 14
## 9965 2020-08-30 Virginia 51 119747 2569
## 9966 2020-08-30 Washington 53 77122 1992
## 9967 2020-08-30 West Virginia 54 10110 213
## 9968 2020-08-30 Wisconsin 55 80311 1132
## 9969 2020-08-30 Wyoming 56 3820 37
## 9970 2020-08-31 Alabama 1 126058 2182
## 9971 2020-08-31 Alaska 2 6075 34
## 9972 2020-08-31 Arizona 4 201866 5031
## 9973 2020-08-31 Arkansas 5 61224 797
## 9974 2020-08-31 California 6 712543 13020
## 9975 2020-08-31 Colorado 8 57797 1952
## 9976 2020-08-31 Connecticut 9 52879 4465
## 9977 2020-08-31 Delaware 10 17429 605
## 9978 2020-08-31 District of Columbia 11 13992 607
## 9979 2020-08-31 Florida 12 623463 11186
## 9980 2020-08-31 Georgia 13 254238 5506
## 9981 2020-08-31 Guam 66 2364 11
## 9982 2020-08-31 Hawaii 15 8447 69
## 9983 2020-08-31 Idaho 16 32256 364
## 9984 2020-08-31 Illinois 17 237682 8258
## 9985 2020-08-31 Indiana 18 96277 3296
## 9986 2020-08-31 Iowa 19 65252 1120
## 9987 2020-08-31 Kansas 20 43407 451
## 9988 2020-08-31 Kentucky 21 50884 965
## 9989 2020-08-31 Louisiana 22 148894 4950
## 9990 2020-08-31 Maine 23 4526 132
## 9991 2020-08-31 Maryland 24 108742 3755
## 9992 2020-08-31 Massachusetts 25 128533 9060
## 9993 2020-08-31 Michigan 26 113163 6756
## 9994 2020-08-31 Minnesota 27 75913 1866
## 9995 2020-08-31 Mississippi 28 82950 2473
## 9996 2020-08-31 Missouri 29 86328 1623
## 9997 2020-08-31 Montana 30 7440 104
## 9998 2020-08-31 Nebraska 31 34287 402
## 9999 2020-08-31 Nevada 32 69318 1305
## 10000 2020-08-31 New Hampshire 33 7275 432
## 10001 2020-08-31 New Jersey 34 193740 15945
## 10002 2020-08-31 New Mexico 35 25352 779
## 10003 2020-08-31 New York 36 439480 32541
## 10004 2020-08-31 North Carolina 37 167989 2733
## 10005 2020-08-31 North Dakota 38 11820 147
## 10006 2020-08-31 Northern Mariana Islands 69 56 2
## 10007 2020-08-31 Ohio 39 123157 4138
## 10008 2020-08-31 Oklahoma 40 58733 800
## 10009 2020-08-31 Oregon 41 26723 467
## 10010 2020-08-31 Pennsylvania 42 138840 7743
## 10011 2020-08-31 Puerto Rico 72 33199 434
## 10012 2020-08-31 Rhode Island 44 21949 1048
## 10013 2020-08-31 South Carolina 45 118992 2720
## 10014 2020-08-31 South Dakota 46 13509 167
## 10015 2020-08-31 Tennessee 47 152033 1727
## 10016 2020-08-31 Texas 48 640317 12857
## 10017 2020-08-31 Utah 49 52166 409
## 10018 2020-08-31 Vermont 50 1624 58
## 10019 2020-08-31 Virgin Islands 78 1139 15
## 10020 2020-08-31 Virginia 51 120594 2580
## 10021 2020-08-31 Washington 53 77718 2002
## 10022 2020-08-31 West Virginia 54 10250 214
## 10023 2020-08-31 Wisconsin 55 80733 1132
## 10024 2020-08-31 Wyoming 56 3842 37
## 10025 2020-09-01 Alabama 1 127616 2200
## 10026 2020-09-01 Alaska 2 6109 36
## 10027 2020-09-01 Arizona 4 202375 5048
## 10028 2020-09-01 Arkansas 5 61497 814
## 10029 2020-09-01 California 6 716630 13149
## 10030 2020-09-01 Colorado 8 58118 1953
## 10031 2020-09-01 Connecticut 9 53006 4466
## 10032 2020-09-01 Delaware 10 17535 605
## 10033 2020-09-01 District of Columbia 11 14049 607
## 10034 2020-09-01 Florida 12 631032 11373
## 10035 2020-09-01 Georgia 13 256544 5604
## 10036 2020-09-01 Guam 66 2416 14
## 10037 2020-09-01 Hawaii 15 8628 73
## 10038 2020-09-01 Idaho 16 32703 370
## 10039 2020-09-01 Illinois 17 239115 8299
## 10040 2020-09-01 Indiana 18 96988 3312
## 10041 2020-09-01 Iowa 19 65846 1125
## 10042 2020-09-01 Kansas 20 43491 454
## 10043 2020-09-01 Kentucky 21 51762 983
## 10044 2020-09-01 Louisiana 22 149583 4984
## 10045 2020-09-01 Maine 23 4548 132
## 10046 2020-09-01 Maryland 24 109353 3761
## 10047 2020-09-01 Massachusetts 25 128888 9064
## 10048 2020-09-01 Michigan 26 113969 6770
## 10049 2020-09-01 Minnesota 27 76404 1872
## 10050 2020-09-01 Mississippi 28 83584 2493
## 10051 2020-09-01 Missouri 29 87414 1651
## 10052 2020-09-01 Montana 30 7526 105
## 10053 2020-09-01 Nebraska 31 34574 405
## 10054 2020-09-01 Nevada 32 69708 1313
## 10055 2020-09-01 New Hampshire 33 7297 432
## 10056 2020-09-01 New Jersey 34 194070 15950
## 10057 2020-09-01 New Mexico 35 25460 787
## 10058 2020-09-01 New York 36 440237 32551
## 10059 2020-09-01 North Carolina 37 169966 2769
## 10060 2020-09-01 North Dakota 38 12004 149
## 10061 2020-09-01 Northern Mariana Islands 69 57 2
## 10062 2020-09-01 Ohio 39 124610 4165
## 10063 2020-09-01 Oklahoma 40 59399 809
## 10064 2020-09-01 Oregon 41 26958 467
## 10065 2020-09-01 Pennsylvania 42 139591 7764
## 10066 2020-09-01 Puerto Rico 72 33421 435
## 10067 2020-09-01 Rhode Island 44 22002 1050
## 10068 2020-09-01 South Carolina 45 119846 2757
## 10069 2020-09-01 South Dakota 46 13749 167
## 10070 2020-09-01 Tennessee 47 153274 1753
## 10071 2020-09-01 Texas 48 645534 13004
## 10072 2020-09-01 Utah 49 52505 410
## 10073 2020-09-01 Vermont 50 1635 58
## 10074 2020-09-01 Virgin Islands 78 1143 15
## 10075 2020-09-01 Virginia 51 121615 2612
## 10076 2020-09-01 Washington 53 78061 2018
## 10077 2020-09-01 West Virginia 54 10507 222
## 10078 2020-09-01 Wisconsin 55 81688 1141
## 10079 2020-09-01 Wyoming 56 3866 41
## 10080 2020-09-02 Alabama 1 128239 2217
## 10081 2020-09-02 Alaska 2 6181 36
## 10082 2020-09-02 Arizona 4 202898 5070
## 10083 2020-09-02 Arkansas 5 62112 841
## 10084 2020-09-02 California 6 722037 13330
## 10085 2020-09-02 Colorado 8 58392 1960
## 10086 2020-09-02 Connecticut 9 53108 4467
## 10087 2020-09-02 Delaware 10 17549 606
## 10088 2020-09-02 District of Columbia 11 14077 608
## 10089 2020-09-02 Florida 12 633434 11500
## 10090 2020-09-02 Georgia 13 258482 5665
## 10091 2020-09-02 Guam 66 2463 14
## 10092 2020-09-02 Hawaii 15 8966 74
## 10093 2020-09-02 Idaho 16 33059 374
## 10094 2020-09-02 Illinois 17 241282 8322
## 10095 2020-09-02 Indiana 18 97853 3325
## 10096 2020-09-02 Iowa 19 66463 1134
## 10097 2020-09-02 Kansas 20 44529 458
## 10098 2020-09-02 Kentucky 21 52704 1008
## 10099 2020-09-02 Louisiana 22 150734 5004
## 10100 2020-09-02 Maine 23 4567 133
## 10101 2020-09-02 Maryland 24 109808 3766
## 10102 2020-09-02 Massachusetts 25 121131 9060
## 10103 2020-09-02 Michigan 26 114603 6783
## 10104 2020-09-02 Minnesota 27 77137 1882
## 10105 2020-09-02 Mississippi 28 84365 2526
## 10106 2020-09-02 Missouri 29 88974 1669
## 10107 2020-09-02 Montana 30 7715 109
## 10108 2020-09-02 Nebraska 31 34995 408
## 10109 2020-09-02 Nevada 32 69927 1338
## 10110 2020-09-02 New Hampshire 33 7309 432
## 10111 2020-09-02 New Jersey 34 194378 15964
## 10112 2020-09-02 New Mexico 35 25612 790
## 10113 2020-09-02 New York 36 440947 32559
## 10114 2020-09-02 North Carolina 37 171140 2806
## 10115 2020-09-02 North Dakota 38 12271 152
## 10116 2020-09-02 Northern Mariana Islands 69 57 2
## 10117 2020-09-02 Ohio 39 125767 4176
## 10118 2020-09-02 Oklahoma 40 60118 821
## 10119 2020-09-02 Oregon 41 27085 473
## 10120 2020-09-02 Pennsylvania 42 140577 7792
## 10121 2020-09-02 Puerto Rico 72 34003 443
## 10122 2020-09-02 Rhode Island 44 22078 1051
## 10123 2020-09-02 South Carolina 45 120503 2794
## 10124 2020-09-02 South Dakota 46 14003 169
## 10125 2020-09-02 Tennessee 47 154833 1768
## 10126 2020-09-02 Texas 48 649844 13185
## 10127 2020-09-02 Utah 49 52950 414
## 10128 2020-09-02 Vermont 50 1637 58
## 10129 2020-09-02 Virgin Islands 78 1144 15
## 10130 2020-09-02 Virginia 51 122542 2641
## 10131 2020-09-02 Washington 53 78554 2025
## 10132 2020-09-02 West Virginia 54 10642 230
## 10133 2020-09-02 Wisconsin 55 82261 1151
## 10134 2020-09-02 Wyoming 56 3911 41
## 10135 2020-09-03 Alabama 1 129285 2233
## 10136 2020-09-03 Alaska 2 6287 37
## 10137 2020-09-03 Arizona 4 203964 5133
## 10138 2020-09-03 Arkansas 5 63504 861
## 10139 2020-09-03 California 6 727403 13497
## 10140 2020-09-03 Colorado 8 58680 1963
## 10141 2020-09-03 Connecticut 9 53209 4468
## 10142 2020-09-03 Delaware 10 17653 606
## 10143 2020-09-03 District of Columbia 11 14135 609
## 10144 2020-09-03 Florida 12 637005 11649
## 10145 2020-09-03 Georgia 13 261056 5735
## 10146 2020-09-03 Guam 66 2529 14
## 10147 2020-09-03 Hawaii 15 9177 78
## 10148 2020-09-03 Idaho 16 33361 375
## 10149 2020-09-03 Illinois 17 242715 8347
## 10150 2020-09-03 Indiana 18 98971 3332
## 10151 2020-09-03 Iowa 19 67693 1137
## 10152 2020-09-03 Kansas 20 44755 475
## 10153 2020-09-03 Kentucky 21 54067 1021
## 10154 2020-09-03 Louisiana 22 151547 5021
## 10155 2020-09-03 Maine 23 4617 133
## 10156 2020-09-03 Maryland 24 110504 3778
## 10157 2020-09-03 Massachusetts 25 121546 9077
## 10158 2020-09-03 Michigan 26 115393 6794
## 10159 2020-09-03 Minnesota 27 78175 1889
## 10160 2020-09-03 Mississippi 28 85116 2536
## 10161 2020-09-03 Missouri 29 90392 1680
## 10162 2020-09-03 Montana 30 7903 111
## 10163 2020-09-03 Nebraska 31 35469 410
## 10164 2020-09-03 Nevada 32 70319 1366
## 10165 2020-09-03 New Hampshire 33 7347 432
## 10166 2020-09-03 New Jersey 34 194756 15971
## 10167 2020-09-03 New Mexico 35 25812 791
## 10168 2020-09-03 New York 36 441835 32567
## 10169 2020-09-03 North Carolina 37 172791 2829
## 10170 2020-09-03 North Dakota 38 12633 154
## 10171 2020-09-03 Northern Mariana Islands 69 57 2
## 10172 2020-09-03 Ohio 39 127112 4226
## 10173 2020-09-03 Oklahoma 40 61027 835
## 10174 2020-09-03 Oregon 41 27356 475
## 10175 2020-09-03 Pennsylvania 42 141578 7805
## 10176 2020-09-03 Puerto Rico 72 34198 448
## 10177 2020-09-03 Rhode Island 44 22143 1055
## 10178 2020-09-03 South Carolina 45 121696 2807
## 10179 2020-09-03 South Dakota 46 14337 169
## 10180 2020-09-03 Tennessee 47 157028 1791
## 10181 2020-09-03 Texas 48 653321 13387
## 10182 2020-09-03 Utah 49 53412 416
## 10183 2020-09-03 Vermont 50 1637 58
## 10184 2020-09-03 Virgin Islands 78 1150 16
## 10185 2020-09-03 Virginia 51 123668 2652
## 10186 2020-09-03 Washington 53 79120 2033
## 10187 2020-09-03 West Virginia 54 10845 237
## 10188 2020-09-03 Wisconsin 55 83119 1155
## 10189 2020-09-03 Wyoming 56 3939 41
## 10190 2020-09-04 Alabama 1 130393 2266
## 10191 2020-09-04 Alaska 2 6416 37
## 10192 2020-09-04 Arizona 4 204686 5174
## 10193 2020-09-04 Arkansas 5 64678 873
## 10194 2020-09-04 California 6 732693 13644
## 10195 2020-09-04 Colorado 8 59021 1973
## 10196 2020-09-04 Connecticut 9 53365 4468
## 10197 2020-09-04 Delaware 10 17752 606
## 10198 2020-09-04 District of Columbia 11 14186 611
## 10199 2020-09-04 Florida 12 640203 11749
## 10200 2020-09-04 Georgia 13 263047 5797
## 10201 2020-09-04 Guam 66 2588 15
## 10202 2020-09-04 Hawaii 15 9448 80
## 10203 2020-09-04 Idaho 16 33628 386
## 10204 2020-09-04 Illinois 17 248253 8386
## 10205 2020-09-04 Indiana 18 100011 3350
## 10206 2020-09-04 Iowa 19 68757 1158
## 10207 2020-09-04 Kansas 20 46049 481
## 10208 2020-09-04 Kentucky 21 55500 1028
## 10209 2020-09-04 Louisiana 22 152369 5035
## 10210 2020-09-04 Maine 23 4632 134
## 10211 2020-09-04 Maryland 24 111332 3789
## 10212 2020-09-04 Massachusetts 25 121758 9100
## 10213 2020-09-04 Michigan 26 116470 6802
## 10214 2020-09-04 Minnesota 27 79018 1899
## 10215 2020-09-04 Mississippi 28 85939 2558
## 10216 2020-09-04 Missouri 29 91994 1698
## 10217 2020-09-04 Montana 30 8046 114
## 10218 2020-09-04 Nebraska 31 35661 411
## 10219 2020-09-04 Nevada 32 70783 1376
## 10220 2020-09-04 New Hampshire 33 7368 432
## 10221 2020-09-04 New Jersey 34 195205 15978
## 10222 2020-09-04 New Mexico 35 25902 794
## 10223 2020-09-04 New York 36 442698 32573
## 10224 2020-09-04 North Carolina 37 174848 2868
## 10225 2020-09-04 North Dakota 38 12977 154
## 10226 2020-09-04 Northern Mariana Islands 69 57 2
## 10227 2020-09-04 Ohio 39 128444 4248
## 10228 2020-09-04 Oklahoma 40 62040 846
## 10229 2020-09-04 Oregon 41 27605 481
## 10230 2020-09-04 Pennsylvania 42 142537 7821
## 10231 2020-09-04 Puerto Rico 72 34241 455
## 10232 2020-09-04 Rhode Island 44 22243 1055
## 10233 2020-09-04 South Carolina 45 123325 2846
## 10234 2020-09-04 South Dakota 46 14596 170
## 10235 2020-09-04 Tennessee 47 158120 1813
## 10236 2020-09-04 Texas 48 658789 13516
## 10237 2020-09-04 Utah 49 53940 420
## 10238 2020-09-04 Vermont 50 1642 58
## 10239 2020-09-04 Virgin Islands 78 1150 16
## 10240 2020-09-04 Virginia 51 124779 2662
## 10241 2020-09-04 Washington 53 79721 2042
## 10242 2020-09-04 West Virginia 54 11037 243
## 10243 2020-09-04 Wisconsin 55 84519 1164
## 10244 2020-09-04 Wyoming 56 3989 42
## 10245 2020-09-05 Alabama 1 131803 2275
## 10246 2020-09-05 Alaska 2 6514 39
## 10247 2020-09-05 Arizona 4 205518 5207
## 10248 2020-09-05 Arkansas 5 65226 882
## 10249 2020-09-05 California 6 737074 13708
## 10250 2020-09-05 Colorado 8 59362 1978
## 10251 2020-09-05 Connecticut 9 53365 4468
## 10252 2020-09-05 Delaware 10 17892 608
## 10253 2020-09-05 District of Columbia 11 14238 611
## 10254 2020-09-05 Florida 12 643859 11810
## 10255 2020-09-05 Georgia 13 265215 5842
## 10256 2020-09-05 Guam 66 2640 16
## 10257 2020-09-05 Hawaii 15 9667 83
## 10258 2020-09-05 Idaho 16 33884 386
## 10259 2020-09-05 Illinois 17 250882 8405
## 10260 2020-09-05 Indiana 18 101094 3362
## 10261 2020-09-05 Iowa 19 69690 1165
## 10262 2020-09-05 Kansas 20 46051 482
## 10263 2020-09-05 Kentucky 21 56016 1033
## 10264 2020-09-05 Louisiana 22 152369 5035
## 10265 2020-09-05 Maine 23 4667 134
## 10266 2020-09-05 Maryland 24 112104 3796
## 10267 2020-09-05 Massachusetts 25 122196 9116
## 10268 2020-09-05 Michigan 26 117267 6809
## 10269 2020-09-05 Minnesota 27 79932 1903
## 10270 2020-09-05 Mississippi 28 86478 2569
## 10271 2020-09-05 Missouri 29 93713 1728
## 10272 2020-09-05 Montana 30 8178 116
## 10273 2020-09-05 Nebraska 31 35805 415
## 10274 2020-09-05 Nevada 32 71184 1390
## 10275 2020-09-05 New Hampshire 33 7424 432
## 10276 2020-09-05 New Jersey 34 195530 15985
## 10277 2020-09-05 New Mexico 35 26048 800
## 10278 2020-09-05 New York 36 443497 32579
## 10279 2020-09-05 North Carolina 37 176124 2913
## 10280 2020-09-05 North Dakota 38 13338 159
## 10281 2020-09-05 Northern Mariana Islands 69 58 2
## 10282 2020-09-05 Ohio 39 129785 4256
## 10283 2020-09-05 Oklahoma 40 63187 850
## 10284 2020-09-05 Oregon 41 27857 482
## 10285 2020-09-05 Pennsylvania 42 143301 7837
## 10286 2020-09-05 Puerto Rico 72 34492 464
## 10287 2020-09-05 Rhode Island 44 22243 1055
## 10288 2020-09-05 South Carolina 45 124289 2877
## 10289 2020-09-05 South Dakota 46 14889 173
## 10290 2020-09-05 Tennessee 47 159893 1838
## 10291 2020-09-05 Texas 48 663246 13660
## 10292 2020-09-05 Utah 49 54364 421
## 10293 2020-09-05 Vermont 50 1647 58
## 10294 2020-09-05 Virgin Islands 78 1167 16
## 10295 2020-09-05 Virginia 51 125727 2677
## 10296 2020-09-05 Washington 53 79900 2042
## 10297 2020-09-05 West Virginia 54 11289 243
## 10298 2020-09-05 Wisconsin 55 85517 1177
## 10299 2020-09-05 Wyoming 56 4006 42
## 10300 2020-09-06 Alabama 1 132314 2276
## 10301 2020-09-06 Alaska 2 6603 39
## 10302 2020-09-06 Arizona 4 205772 5221
## 10303 2020-09-06 Arkansas 5 65924 894
## 10304 2020-09-06 California 6 740233 13730
## 10305 2020-09-06 Colorado 8 59626 1980
## 10306 2020-09-06 Connecticut 9 53365 4468
## 10307 2020-09-06 Delaware 10 18043 609
## 10308 2020-09-06 District of Columbia 11 14279 611
## 10309 2020-09-06 Florida 12 646423 11848
## 10310 2020-09-06 Georgia 13 266707 5900
## 10311 2020-09-06 Guam 66 2588 17
## 10312 2020-09-06 Hawaii 15 9829 84
## 10313 2020-09-06 Idaho 16 34053 387
## 10314 2020-09-06 Illinois 17 252306 8409
## 10315 2020-09-06 Indiana 18 101937 3364
## 10316 2020-09-06 Iowa 19 70210 1167
## 10317 2020-09-06 Kansas 20 46151 483
## 10318 2020-09-06 Kentucky 21 56172 1035
## 10319 2020-09-06 Louisiana 22 153764 5093
## 10320 2020-09-06 Maine 23 4682 134
## 10321 2020-09-06 Maryland 24 112557 3799
## 10322 2020-09-06 Massachusetts 25 122562 9125
## 10323 2020-09-06 Michigan 26 117310 6809
## 10324 2020-09-06 Minnesota 27 80639 1909
## 10325 2020-09-06 Mississippi 28 86888 2584
## 10326 2020-09-06 Missouri 29 94923 1739
## 10327 2020-09-06 Montana 30 8272 117
## 10328 2020-09-06 Nebraska 31 35891 415
## 10329 2020-09-06 Nevada 32 71711 1394
## 10330 2020-09-06 New Hampshire 33 7447 433
## 10331 2020-09-06 New Jersey 34 195841 15989
## 10332 2020-09-06 New Mexico 35 26107 803
## 10333 2020-09-06 New York 36 444226 32585
## 10334 2020-09-06 North Carolina 37 177141 2920
## 10335 2020-09-06 North Dakota 38 13635 160
## 10336 2020-09-06 Northern Mariana Islands 69 58 2
## 10337 2020-09-06 Ohio 39 130558 4259
## 10338 2020-09-06 Oklahoma 40 63607 853
## 10339 2020-09-06 Oregon 41 28045 483
## 10340 2020-09-06 Pennsylvania 42 143902 7837
## 10341 2020-09-06 Puerto Rico 72 34533 477
## 10342 2020-09-06 Rhode Island 44 22243 1055
## 10343 2020-09-06 South Carolina 45 124952 2887
## 10344 2020-09-06 South Dakota 46 15109 173
## 10345 2020-09-06 Tennessee 47 161589 1841
## 10346 2020-09-06 Texas 48 665338 13739
## 10347 2020-09-06 Utah 49 54660 423
## 10348 2020-09-06 Vermont 50 1648 58
## 10349 2020-09-06 Virgin Islands 78 1181 17
## 10350 2020-09-06 Virginia 51 126926 2678
## 10351 2020-09-06 Washington 53 80369 2043
## 10352 2020-09-06 West Virginia 54 11412 246
## 10353 2020-09-06 Wisconsin 55 86406 1177
## 10354 2020-09-06 Wyoming 56 4032 42
## 10355 2020-09-07 Alabama 1 132973 2276
## 10356 2020-09-07 Alaska 2 6637 39
## 10357 2020-09-07 Arizona 4 205971 5219
## 10358 2020-09-07 Arkansas 5 66280 908
## 10359 2020-09-07 California 6 742689 13763
## 10360 2020-09-07 Colorado 8 59823 1980
## 10361 2020-09-07 Connecticut 9 53365 4468
## 10362 2020-09-07 Delaware 10 18249 609
## 10363 2020-09-07 District of Columbia 11 14315 611
## 10364 2020-09-07 Florida 12 648261 11870
## 10365 2020-09-07 Georgia 13 267238 5907
## 10366 2020-09-07 Guam 66 2588 19
## 10367 2020-09-07 Hawaii 15 9933 85
## 10368 2020-09-07 Idaho 16 34153 387
## 10369 2020-09-07 Illinois 17 253649 8417
## 10370 2020-09-07 Indiana 18 102527 3368
## 10371 2020-09-07 Iowa 19 70537 1170
## 10372 2020-09-07 Kansas 20 47409 485
## 10373 2020-09-07 Kentucky 21 56545 1036
## 10374 2020-09-07 Louisiana 22 154073 5105
## 10375 2020-09-07 Maine 23 4701 134
## 10376 2020-09-07 Maryland 24 113378 3804
## 10377 2020-09-07 Massachusetts 25 122791 9133
## 10378 2020-09-07 Michigan 26 118388 6813
## 10379 2020-09-07 Minnesota 27 81277 1912
## 10380 2020-09-07 Mississippi 28 87130 2585
## 10381 2020-09-07 Missouri 29 95795 1739
## 10382 2020-09-07 Montana 30 8340 118
## 10383 2020-09-07 Nebraska 31 35975 415
## 10384 2020-09-07 Nevada 32 72048 1394
## 10385 2020-09-07 New Hampshire 33 7476 433
## 10386 2020-09-07 New Jersey 34 196173 15991
## 10387 2020-09-07 New Mexico 35 26144 807
## 10388 2020-09-07 New York 36 444751 32600
## 10389 2020-09-07 North Carolina 37 178212 2920
## 10390 2020-09-07 North Dakota 38 13805 160
## 10391 2020-09-07 Northern Mariana Islands 69 59 2
## 10392 2020-09-07 Ohio 39 131336 4276
## 10393 2020-09-07 Oklahoma 40 64220 853
## 10394 2020-09-07 Oregon 41 28191 487
## 10395 2020-09-07 Pennsylvania 42 144658 7855
## 10396 2020-09-07 Puerto Rico 72 35375 477
## 10397 2020-09-07 Rhode Island 44 22243 1055
## 10398 2020-09-07 South Carolina 45 125607 2907
## 10399 2020-09-07 South Dakota 46 15300 173
## 10400 2020-09-07 Tennessee 47 162531 1845
## 10401 2020-09-07 Texas 48 666209 13781
## 10402 2020-09-07 Utah 49 55052 424
## 10403 2020-09-07 Vermont 50 1651 58
## 10404 2020-09-07 Virgin Islands 78 1190 17
## 10405 2020-09-07 Virginia 51 127571 2684
## 10406 2020-09-07 Washington 53 80485 2043
## 10407 2020-09-07 West Virginia 54 11575 247
## 10408 2020-09-07 Wisconsin 55 86981 1177
## 10409 2020-09-07 Wyoming 56 4032 42
## 10410 2020-09-08 Alabama 1 133606 2277
## 10411 2020-09-08 Alaska 2 6670 39
## 10412 2020-09-08 Arizona 4 206048 5221
## 10413 2020-09-08 Arkansas 5 66757 917
## 10414 2020-09-08 California 6 746114 13843
## 10415 2020-09-08 Colorado 8 60003 1980
## 10416 2020-09-08 Connecticut 9 53782 4474
## 10417 2020-09-08 Delaware 10 18308 609
## 10418 2020-09-08 District of Columbia 11 14362 611
## 10419 2020-09-08 Florida 12 650084 11914
## 10420 2020-09-08 Georgia 13 268684 5931
## 10421 2020-09-08 Guam 66 2682 20
## 10422 2020-09-08 Hawaii 15 10130 87
## 10423 2020-09-08 Idaho 16 34461 390
## 10424 2020-09-08 Illinois 17 255229 8431
## 10425 2020-09-08 Indiana 18 102917 3380
## 10426 2020-09-08 Iowa 19 71018 1185
## 10427 2020-09-08 Kansas 20 47878 486
## 10428 2020-09-08 Kentucky 21 56877 1039
## 10429 2020-09-08 Louisiana 22 154329 5118
## 10430 2020-09-08 Maine 23 4713 134
## 10431 2020-09-08 Maryland 24 113734 3807
## 10432 2020-09-08 Massachusetts 25 122962 9141
## 10433 2020-09-08 Michigan 26 118984 6814
## 10434 2020-09-08 Minnesota 27 81660 1914
## 10435 2020-09-08 Mississippi 28 87379 2585
## 10436 2020-09-08 Missouri 29 97044 1746
## 10437 2020-09-08 Montana 30 8409 119
## 10438 2020-09-08 Nebraska 31 36477 418
## 10439 2020-09-08 Nevada 32 72165 1395
## 10440 2020-09-08 New Hampshire 33 7494 433
## 10441 2020-09-08 New Jersey 34 196450 15996
## 10442 2020-09-08 New Mexico 35 26181 807
## 10443 2020-09-08 New York 36 445308 32612
## 10444 2020-09-08 North Carolina 37 179150 2942
## 10445 2020-09-08 North Dakota 38 13876 160
## 10446 2020-09-08 Northern Mariana Islands 69 59 2
## 10447 2020-09-08 Ohio 39 131992 4298
## 10448 2020-09-08 Oklahoma 40 65053 854
## 10449 2020-09-08 Oregon 41 28355 492
## 10450 2020-09-08 Pennsylvania 42 145191 7862
## 10451 2020-09-08 Puerto Rico 72 35504 482
## 10452 2020-09-08 Rhode Island 44 22592 1059
## 10453 2020-09-08 South Carolina 45 125908 2912
## 10454 2020-09-08 South Dakota 46 15403 173
## 10455 2020-09-08 Tennessee 47 163180 1873
## 10456 2020-09-08 Texas 48 670427 13855
## 10457 2020-09-08 Utah 49 55424 426
## 10458 2020-09-08 Vermont 50 1654 58
## 10459 2020-09-08 Virgin Islands 78 1191 18
## 10460 2020-09-08 Virginia 51 128407 2686
## 10461 2020-09-08 Washington 53 81048 2045
## 10462 2020-09-08 West Virginia 54 11661 250
## 10463 2020-09-08 Wisconsin 55 87730 1179
## 10464 2020-09-08 Wyoming 56 4103 42
## 10465 2020-09-09 Alabama 1 134417 2285
## 10466 2020-09-09 Alaska 2 6735 39
## 10467 2020-09-09 Arizona 4 206548 5253
## 10468 2020-09-09 Arkansas 5 67255 928
## 10469 2020-09-09 California 6 749197 13990
## 10470 2020-09-09 Colorado 8 60291 1984
## 10471 2020-09-09 Connecticut 9 53871 4474
## 10472 2020-09-09 Delaware 10 18308 609
## 10473 2020-09-09 District of Columbia 11 14387 615
## 10474 2020-09-09 Florida 12 652140 12114
## 10475 2020-09-09 Georgia 13 270624 5987
## 10476 2020-09-09 Guam 66 2727 21
## 10477 2020-09-09 Hawaii 15 10228 90
## 10478 2020-09-09 Idaho 16 34707 406
## 10479 2020-09-09 Illinois 17 256614 8457
## 10480 2020-09-09 Indiana 18 103641 3397
## 10481 2020-09-09 Iowa 19 71594 1204
## 10482 2020-09-09 Kansas 20 48389 497
## 10483 2020-09-09 Kentucky 21 57518 1058
## 10484 2020-09-09 Louisiana 22 155890 5140
## 10485 2020-09-09 Maine 23 4734 134
## 10486 2020-09-09 Maryland 24 114070 3816
## 10487 2020-09-09 Massachusetts 25 123143 9146
## 10488 2020-09-09 Michigan 26 119952 6889
## 10489 2020-09-09 Minnesota 27 81920 1921
## 10490 2020-09-09 Mississippi 28 87805 2623
## 10491 2020-09-09 Missouri 29 98446 1755
## 10492 2020-09-09 Montana 30 8499 122
## 10493 2020-09-09 Nebraska 31 36917 434
## 10494 2020-09-09 Nevada 32 72317 1414
## 10495 2020-09-09 New Hampshire 33 7517 433
## 10496 2020-09-09 New Jersey 34 196779 16009
## 10497 2020-09-09 New Mexico 35 26268 813
## 10498 2020-09-09 New York 36 445881 32611
## 10499 2020-09-09 North Carolina 37 180061 2990
## 10500 2020-09-09 North Dakota 38 14114 161
## 10501 2020-09-09 Northern Mariana Islands 69 59 2
## 10502 2020-09-09 Ohio 39 132965 4324
## 10503 2020-09-09 Oklahoma 40 65929 863
## 10504 2020-09-09 Oregon 41 28474 499
## 10505 2020-09-09 Pennsylvania 42 146058 7882
## 10506 2020-09-09 Puerto Rico 72 35507 500
## 10507 2020-09-09 Rhode Island 44 22676 1062
## 10508 2020-09-09 South Carolina 45 126213 2942
## 10509 2020-09-09 South Dakota 46 15571 173
## 10510 2020-09-09 Tennessee 47 164032 1908
## 10511 2020-09-09 Texas 48 675149 13986
## 10512 2020-09-09 Utah 49 55730 428
## 10513 2020-09-09 Vermont 50 1656 58
## 10514 2020-09-09 Virgin Islands 78 1197 18
## 10515 2020-09-09 Virginia 51 129289 2697
## 10516 2020-09-09 Washington 53 81528 2066
## 10517 2020-09-09 West Virginia 54 11808 254
## 10518 2020-09-09 Wisconsin 55 88643 1193
## 10519 2020-09-09 Wyoming 56 4151 42
## 10520 2020-09-10 Alabama 1 135565 2301
## 10521 2020-09-10 Alaska 2 6860 39
## 10522 2020-09-10 Arizona 4 207002 5275
## 10523 2020-09-10 Arkansas 5 67803 940
## 10524 2020-09-10 California 6 753019 14094
## 10525 2020-09-10 Colorado 8 60576 1988
## 10526 2020-09-10 Connecticut 9 54093 4478
## 10527 2020-09-10 Delaware 10 18466 613
## 10528 2020-09-10 District of Columbia 11 14412 616
## 10529 2020-09-10 Florida 12 654723 12325
## 10530 2020-09-10 Georgia 13 272588 6062
## 10531 2020-09-10 Guam 66 2815 22
## 10532 2020-09-10 Hawaii 15 10397 93
## 10533 2020-09-10 Idaho 16 35027 407
## 10534 2020-09-10 Illinois 17 258573 8480
## 10535 2020-09-10 Indiana 18 104429 3410
## 10536 2020-09-10 Iowa 19 72548 1208
## 10537 2020-09-10 Kansas 20 48443 499
## 10538 2020-09-10 Kentucky 21 58452 1073
## 10539 2020-09-10 Louisiana 22 156354 5161
## 10540 2020-09-10 Maine 23 4760 134
## 10541 2020-09-10 Maryland 24 114574 3824
## 10542 2020-09-10 Massachusetts 25 123546 9166
## 10543 2020-09-10 Michigan 26 120896 6894
## 10544 2020-09-10 Minnesota 27 82301 1936
## 10545 2020-09-10 Mississippi 28 88322 2656
## 10546 2020-09-10 Missouri 29 99677 1773
## 10547 2020-09-10 Montana 30 8694 123
## 10548 2020-09-10 Nebraska 31 37373 440
## 10549 2020-09-10 Nevada 32 72620 1432
## 10550 2020-09-10 New Hampshire 33 7573 434
## 10551 2020-09-10 New Jersey 34 197203 16014
## 10552 2020-09-10 New Mexico 35 26429 816
## 10553 2020-09-10 New York 36 446637 32618
## 10554 2020-09-10 North Carolina 37 181335 3016
## 10555 2020-09-10 North Dakota 38 14446 163
## 10556 2020-09-10 Northern Mariana Islands 69 59 2
## 10557 2020-09-10 Ohio 39 134086 4354
## 10558 2020-09-10 Oklahoma 40 66700 876
## 10559 2020-09-10 Oregon 41 28661 501
## 10560 2020-09-10 Pennsylvania 42 146735 7894
## 10561 2020-09-10 Puerto Rico 72 36279 512
## 10562 2020-09-10 Rhode Island 44 22782 1067
## 10563 2020-09-10 South Carolina 45 126592 2975
## 10564 2020-09-10 South Dakota 46 15834 177
## 10565 2020-09-10 Tennessee 47 165911 1963
## 10566 2020-09-10 Texas 48 677888 13998
## 10567 2020-09-10 Utah 49 56182 431
## 10568 2020-09-10 Vermont 50 1661 58
## 10569 2020-09-10 Virgin Islands 78 1201 18
## 10570 2020-09-10 Virginia 51 130525 2708
## 10571 2020-09-10 Washington 53 82125 2073
## 10572 2020-09-10 West Virginia 54 12017 257
## 10573 2020-09-10 Wisconsin 55 90232 1202
## 10574 2020-09-10 Wyoming 56 4199 42
## 10575 2020-09-11 Alabama 1 136703 2333
## 10576 2020-09-11 Alaska 2 6968 40
## 10577 2020-09-11 Arizona 4 207525 5290
## 10578 2020-09-11 Arkansas 5 68987 953
## 10579 2020-09-11 California 6 757126 14265
## 10580 2020-09-11 Colorado 8 60881 1991
## 10581 2020-09-11 Connecticut 9 54326 4480
## 10582 2020-09-11 Delaware 10 18559 613
## 10583 2020-09-11 District of Columbia 11 14493 616
## 10584 2020-09-11 Florida 12 658373 12501
## 10585 2020-09-11 Georgia 13 274242 6103
## 10586 2020-09-11 Guam 66 2832 24
## 10587 2020-09-11 Hawaii 15 10567 95
## 10588 2020-09-11 Idaho 16 35354 415
## 10589 2020-09-11 Illinois 17 260949 8522
## 10590 2020-09-11 Indiana 18 105703 3420
## 10591 2020-09-11 Iowa 19 73399 1216
## 10592 2020-09-11 Kansas 20 49393 520
## 10593 2020-09-11 Kentucky 21 59349 1087
## 10594 2020-09-11 Louisiana 22 157109 5202
## 10595 2020-09-11 Maine 23 4792 134
## 10596 2020-09-11 Maryland 24 115217 3828
## 10597 2020-09-11 Massachusetts 25 123986 9180
## 10598 2020-09-11 Michigan 26 122319 6900
## 10599 2020-09-11 Minnesota 27 82768 1949
## 10600 2020-09-11 Mississippi 28 89175 2670
## 10601 2020-09-11 Missouri 29 101285 1784
## 10602 2020-09-11 Montana 30 8817 132
## 10603 2020-09-11 Nebraska 31 37841 449
## 10604 2020-09-11 Nevada 32 72886 1441
## 10605 2020-09-11 New Hampshire 33 7620 434
## 10606 2020-09-11 New Jersey 34 197677 16023
## 10607 2020-09-11 New Mexico 35 26563 818
## 10608 2020-09-11 New York 36 447498 32619
## 10609 2020-09-11 North Carolina 37 182934 3050
## 10610 2020-09-11 North Dakota 38 14687 167
## 10611 2020-09-11 Northern Mariana Islands 69 59 2
## 10612 2020-09-11 Ohio 39 135326 4403
## 10613 2020-09-11 Oklahoma 40 67642 888
## 10614 2020-09-11 Oregon 41 28888 500
## 10615 2020-09-11 Pennsylvania 42 147744 7914
## 10616 2020-09-11 Puerto Rico 72 36581 523
## 10617 2020-09-11 Rhode Island 44 22905 1071
## 10618 2020-09-11 South Carolina 45 129046 3028
## 10619 2020-09-11 South Dakota 46 16117 177
## 10620 2020-09-11 Tennessee 47 167263 1999
## 10621 2020-09-11 Texas 48 683295 14279
## 10622 2020-09-11 Utah 49 56789 433
## 10623 2020-09-11 Vermont 50 1668 58
## 10624 2020-09-11 Virgin Islands 78 1201 18
## 10625 2020-09-11 Virginia 51 131640 2711
## 10626 2020-09-11 Washington 53 82590 2079
## 10627 2020-09-11 West Virginia 54 12174 263
## 10628 2020-09-11 Wisconsin 55 91672 1206
## 10629 2020-09-11 Wyoming 56 4264 42
## 10630 2020-09-12 Alabama 1 137646 2350
## 10631 2020-09-12 Alaska 2 7074 41
## 10632 2020-09-12 Arizona 4 208128 5316
## 10633 2020-09-12 Arkansas 5 69710 969
## 10634 2020-09-12 California 6 760582 14333
## 10635 2020-09-12 Colorado 8 61311 1994
## 10636 2020-09-12 Connecticut 9 54326 4480
## 10637 2020-09-12 Delaware 10 18726 613
## 10638 2020-09-12 District of Columbia 11 14552 616
## 10639 2020-09-12 Florida 12 661563 12599
## 10640 2020-09-12 Georgia 13 276319 6144
## 10641 2020-09-12 Guam 66 2832 24
## 10642 2020-09-12 Hawaii 15 10696 96
## 10643 2020-09-12 Idaho 16 35588 416
## 10644 2020-09-12 Illinois 17 262957 8546
## 10645 2020-09-12 Indiana 18 106777 3437
## 10646 2020-09-12 Iowa 19 74204 1218
## 10647 2020-09-12 Kansas 20 49398 533
## 10648 2020-09-12 Kentucky 21 60187 1099
## 10649 2020-09-12 Louisiana 22 157109 5202
## 10650 2020-09-12 Maine 23 4834 135
## 10651 2020-09-12 Maryland 24 115876 3836
## 10652 2020-09-12 Massachusetts 25 124540 9196
## 10653 2020-09-12 Michigan 26 123048 6912
## 10654 2020-09-12 Minnesota 27 83640 1958
## 10655 2020-09-12 Mississippi 28 89620 2685
## 10656 2020-09-12 Missouri 29 103085 1802
## 10657 2020-09-12 Montana 30 8946 134
## 10658 2020-09-12 Nebraska 31 38108 449
## 10659 2020-09-12 Nevada 32 73291 1453
## 10660 2020-09-12 New Hampshire 33 7652 435
## 10661 2020-09-12 New Jersey 34 198126 16027
## 10662 2020-09-12 New Mexico 35 26661 821
## 10663 2020-09-12 New York 36 448347 32625
## 10664 2020-09-12 North Carolina 37 184305 3073
## 10665 2020-09-12 North Dakota 38 15154 170
## 10666 2020-09-12 Northern Mariana Islands 69 60 2
## 10667 2020-09-12 Ohio 39 136568 4411
## 10668 2020-09-12 Oklahoma 40 68659 899
## 10669 2020-09-12 Oregon 41 29156 505
## 10670 2020-09-12 Pennsylvania 42 148635 7915
## 10671 2020-09-12 Puerto Rico 72 37092 535
## 10672 2020-09-12 Rhode Island 44 22905 1071
## 10673 2020-09-12 South Carolina 45 129978 3040
## 10674 2020-09-12 South Dakota 46 16437 183
## 10675 2020-09-12 Tennessee 47 168552 2040
## 10676 2020-09-12 Texas 48 685921 14384
## 10677 2020-09-12 Utah 49 57276 434
## 10678 2020-09-12 Vermont 50 1677 58
## 10679 2020-09-12 Virgin Islands 78 1220 19
## 10680 2020-09-12 Virginia 51 132940 2722
## 10681 2020-09-12 Washington 53 82957 2079
## 10682 2020-09-12 West Virginia 54 12521 265
## 10683 2020-09-12 Wisconsin 55 93102 1218
## 10684 2020-09-12 Wyoming 56 4297 42
## 10685 2020-09-13 Alabama 1 138755 2351
## 10686 2020-09-13 Alaska 2 7136 41
## 10687 2020-09-13 Arizona 4 208514 5322
## 10688 2020-09-13 Arkansas 5 70219 981
## 10689 2020-09-13 California 6 763390 14386
## 10690 2020-09-13 Colorado 8 61641 1994
## 10691 2020-09-13 Connecticut 9 54326 4480
## 10692 2020-09-13 Delaware 10 18849 615
## 10693 2020-09-13 District of Columbia 11 14592 616
## 10694 2020-09-13 Florida 12 663986 12607
## 10695 2020-09-13 Georgia 13 277715 6191
## 10696 2020-09-13 Guam 66 2832 24
## 10697 2020-09-13 Hawaii 15 10808 98
## 10698 2020-09-13 Idaho 16 35693 416
## 10699 2020-09-13 Illinois 17 264340 8562
## 10700 2020-09-13 Indiana 18 108020 3438
## 10701 2020-09-13 Iowa 19 74675 1220
## 10702 2020-09-13 Kansas 20 49408 536
## 10703 2020-09-13 Kentucky 21 60607 1102
## 10704 2020-09-13 Louisiana 22 158390 5235
## 10705 2020-09-13 Maine 23 4863 136
## 10706 2020-09-13 Maryland 24 116600 3838
## 10707 2020-09-13 Massachusetts 25 124826 9210
## 10708 2020-09-13 Michigan 26 123075 6912
## 10709 2020-09-13 Minnesota 27 84363 1971
## 10710 2020-09-13 Mississippi 28 89874 2697
## 10711 2020-09-13 Missouri 29 104603 1812
## 10712 2020-09-13 Montana 30 9037 136
## 10713 2020-09-13 Nebraska 31 38188 449
## 10714 2020-09-13 Nevada 32 73648 1454
## 10715 2020-09-13 New Hampshire 33 7696 436
## 10716 2020-09-13 New Jersey 34 198423 16031
## 10717 2020-09-13 New Mexico 35 26761 823
## 10718 2020-09-13 New York 36 449072 32629
## 10719 2020-09-13 North Carolina 37 185325 3080
## 10720 2020-09-13 North Dakota 38 15580 171
## 10721 2020-09-13 Northern Mariana Islands 69 60 2
## 10722 2020-09-13 Ohio 39 137405 4415
## 10723 2020-09-13 Oklahoma 40 69354 905
## 10724 2020-09-13 Oregon 41 29337 509
## 10725 2020-09-13 Pennsylvania 42 148635 7915
## 10726 2020-09-13 Puerto Rico 72 37380 539
## 10727 2020-09-13 Rhode Island 44 22905 1071
## 10728 2020-09-13 South Carolina 45 131864 3064
## 10729 2020-09-13 South Dakota 46 16638 184
## 10730 2020-09-13 Tennessee 47 169310 2055
## 10731 2020-09-13 Texas 48 689941 14458
## 10732 2020-09-13 Utah 49 57892 434
## 10733 2020-09-13 Vermont 50 1684 58
## 10734 2020-09-13 Virgin Islands 78 1220 19
## 10735 2020-09-13 Virginia 51 133814 2724
## 10736 2020-09-13 Washington 53 83177 2079
## 10737 2020-09-13 West Virginia 54 12699 266
## 10738 2020-09-13 Wisconsin 55 94723 1219
## 10739 2020-09-13 Wyoming 56 4346 42
## 10740 2020-09-14 Alabama 1 139459 2355
## 10741 2020-09-14 Alaska 2 7213 41
## 10742 2020-09-14 Arizona 4 208726 5322
## 10743 2020-09-14 Arkansas 5 70627 992
## 10744 2020-09-14 California 6 767063 14458
## 10745 2020-09-14 Colorado 8 62032 2000
## 10746 2020-09-14 Connecticut 9 54895 4485
## 10747 2020-09-14 Delaware 10 18937 617
## 10748 2020-09-14 District of Columbia 11 14622 616
## 10749 2020-09-14 Florida 12 665722 12641
## 10750 2020-09-14 Georgia 13 278699 6211
## 10751 2020-09-14 Guam 66 2896 27
## 10752 2020-09-14 Hawaii 15 10887 98
## 10753 2020-09-14 Idaho 16 35984 420
## 10754 2020-09-14 Illinois 17 265869 8571
## 10755 2020-09-14 Indiana 18 108755 3439
## 10756 2020-09-14 Iowa 19 75069 1233
## 10757 2020-09-14 Kansas 20 50871 546
## 10758 2020-09-14 Kentucky 21 61182 1105
## 10759 2020-09-14 Louisiana 22 158882 5252
## 10760 2020-09-14 Maine 23 4903 136
## 10761 2020-09-14 Maryland 24 117147 3839
## 10762 2020-09-14 Massachusetts 25 125080 9219
## 10763 2020-09-14 Michigan 26 124276 6922
## 10764 2020-09-14 Minnesota 27 85001 1974
## 10765 2020-09-14 Mississippi 28 90018 2706
## 10766 2020-09-14 Missouri 29 106057 1812
## 10767 2020-09-14 Montana 30 9164 139
## 10768 2020-09-14 Nebraska 31 38642 450
## 10769 2020-09-14 Nevada 32 73889 1456
## 10770 2020-09-14 New Hampshire 33 7714 436
## 10771 2020-09-14 New Jersey 34 198757 16034
## 10772 2020-09-14 New Mexico 35 26842 823
## 10773 2020-09-14 New York 36 449658 32639
## 10774 2020-09-14 North Carolina 37 186447 3094
## 10775 2020-09-14 North Dakota 38 15834 173
## 10776 2020-09-14 Northern Mariana Islands 69 61 2
## 10777 2020-09-14 Ohio 39 138484 4419
## 10778 2020-09-14 Oklahoma 40 70223 905
## 10779 2020-09-14 Oregon 41 29488 511
## 10780 2020-09-14 Pennsylvania 42 150044 7940
## 10781 2020-09-14 Puerto Rico 72 37750 542
## 10782 2020-09-14 Rhode Island 44 23130 1075
## 10783 2020-09-14 South Carolina 45 132680 3077
## 10784 2020-09-14 South Dakota 46 16801 184
## 10785 2020-09-14 Tennessee 47 171498 2073
## 10786 2020-09-14 Texas 48 694547 14508
## 10787 2020-09-14 Utah 49 58451 436
## 10788 2020-09-14 Vermont 50 1696 58
## 10789 2020-09-14 Virgin Islands 78 1221 19
## 10790 2020-09-14 Virginia 51 134571 2743
## 10791 2020-09-14 Washington 53 83861 2095
## 10792 2020-09-14 West Virginia 54 12820 275
## 10793 2020-09-14 Wisconsin 55 95564 1219
## 10794 2020-09-14 Wyoming 56 4392 46
## 10795 2020-09-15 Alabama 1 140160 2387
## 10796 2020-09-15 Alaska 2 7256 41
## 10797 2020-09-15 Arizona 4 209215 5346
## 10798 2020-09-15 Arkansas 5 71497 1150
## 10799 2020-09-15 California 6 769918 14606
## 10800 2020-09-15 Colorado 8 62575 2006
## 10801 2020-09-15 Connecticut 9 55031 4485
## 10802 2020-09-15 Delaware 10 19137 618
## 10803 2020-09-15 District of Columbia 11 14687 616
## 10804 2020-09-15 Florida 12 668838 12786
## 10805 2020-09-15 Georgia 13 280356 6255
## 10806 2020-09-15 Guam 66 2935 29
## 10807 2020-09-15 Hawaii 15 10951 99
## 10808 2020-09-15 Idaho 16 36306 425
## 10809 2020-09-15 Illinois 17 267380 8589
## 10810 2020-09-15 Indiana 18 109445 3460
## 10811 2020-09-15 Iowa 19 75722 1234
## 10812 2020-09-15 Kansas 20 51006 555
## 10813 2020-09-15 Kentucky 21 61986 1112
## 10814 2020-09-15 Louisiana 22 159253 5278
## 10815 2020-09-15 Maine 23 4918 137
## 10816 2020-09-15 Maryland 24 117745 3849
## 10817 2020-09-15 Massachusetts 25 125393 9225
## 10818 2020-09-15 Michigan 26 124978 6933
## 10819 2020-09-15 Minnesota 27 85403 1979
## 10820 2020-09-15 Mississippi 28 90523 2734
## 10821 2020-09-15 Missouri 29 107687 1830
## 10822 2020-09-15 Montana 30 9281 141
## 10823 2020-09-15 Nebraska 31 38970 451
## 10824 2020-09-15 Nevada 32 74129 1484
## 10825 2020-09-15 New Hampshire 33 7748 438
## 10826 2020-09-15 New Jersey 34 199193 16043
## 10827 2020-09-15 New Mexico 35 26923 830
## 10828 2020-09-15 New York 36 450425 32655
## 10829 2020-09-15 North Carolina 37 187486 3135
## 10830 2020-09-15 North Dakota 38 16067 175
## 10831 2020-09-15 Northern Mariana Islands 69 61 2
## 10832 2020-09-15 Ohio 39 139485 4506
## 10833 2020-09-15 Oklahoma 40 71314 912
## 10834 2020-09-15 Oregon 41 29664 519
## 10835 2020-09-15 Pennsylvania 42 151081 7945
## 10836 2020-09-15 Puerto Rico 72 38172 551
## 10837 2020-09-15 Rhode Island 44 23250 1078
## 10838 2020-09-15 South Carolina 45 133470 3098
## 10839 2020-09-15 South Dakota 46 16994 184
## 10840 2020-09-15 Tennessee 47 172692 2102
## 10841 2020-09-15 Texas 48 701509 14661
## 10842 2020-09-15 Utah 49 59017 436
## 10843 2020-09-15 Vermont 50 1702 58
## 10844 2020-09-15 Virgin Islands 78 1232 19
## 10845 2020-09-15 Virginia 51 135514 2839
## 10846 2020-09-15 Washington 53 84222 2107
## 10847 2020-09-15 West Virginia 54 12976 280
## 10848 2020-09-15 Wisconsin 55 97002 1230
## 10849 2020-09-15 Wyoming 56 4438 46
## 10850 2020-09-16 Alabama 1 141087 2392
## 10851 2020-09-16 Alaska 2 7308 41
## 10852 2020-09-16 Arizona 4 209911 5376
## 10853 2020-09-16 Arkansas 5 72219 1157
## 10854 2020-09-16 California 6 773319 14716
## 10855 2020-09-16 Colorado 8 63068 2010
## 10856 2020-09-16 Connecticut 9 55166 4487
## 10857 2020-09-16 Delaware 10 19234 619
## 10858 2020-09-16 District of Columbia 11 14743 617
## 10859 2020-09-16 Florida 12 671193 12938
## 10860 2020-09-16 Georgia 13 282363 6276
## 10861 2020-09-16 Guam 66 2982 29
## 10862 2020-09-16 Hawaii 15 11052 102
## 10863 2020-09-16 Idaho 16 36594 430
## 10864 2020-09-16 Illinois 17 269282 8622
## 10865 2020-09-16 Indiana 18 110025 3472
## 10866 2020-09-16 Iowa 19 76680 1248
## 10867 2020-09-16 Kansas 20 51829 586
## 10868 2020-09-16 Kentucky 21 62723 1118
## 10869 2020-09-16 Louisiana 22 159865 5294
## 10870 2020-09-16 Maine 23 4941 138
## 10871 2020-09-16 Maryland 24 118387 3855
## 10872 2020-09-16 Massachusetts 25 125699 9245
## 10873 2020-09-16 Michigan 26 125782 6944
## 10874 2020-09-16 Minnesota 27 85865 1985
## 10875 2020-09-16 Mississippi 28 91234 2756
## 10876 2020-09-16 Missouri 29 108997 1844
## 10877 2020-09-16 Montana 30 9487 141
## 10878 2020-09-16 Nebraska 31 39419 455
## 10879 2020-09-16 Nevada 32 74377 1496
## 10880 2020-09-16 New Hampshire 33 7780 438
## 10881 2020-09-16 New Jersey 34 199583 16054
## 10882 2020-09-16 New Mexico 35 27041 832
## 10883 2020-09-16 New York 36 451078 32662
## 10884 2020-09-16 North Carolina 37 188800 3176
## 10885 2020-09-16 North Dakota 38 16336 180
## 10886 2020-09-16 Northern Mariana Islands 69 61 2
## 10887 2020-09-16 Ohio 39 140518 4555
## 10888 2020-09-16 Oklahoma 40 72284 924
## 10889 2020-09-16 Oregon 41 29856 521
## 10890 2020-09-16 Pennsylvania 42 151889 7963
## 10891 2020-09-16 Puerto Rico 72 38284 570
## 10892 2020-09-16 Rhode Island 44 23358 1081
## 10893 2020-09-16 South Carolina 45 134122 3132
## 10894 2020-09-16 South Dakota 46 17291 192
## 10895 2020-09-16 Tennessee 47 174400 2127
## 10896 2020-09-16 Texas 48 706034 14803
## 10897 2020-09-16 Utah 49 59770 437
## 10898 2020-09-16 Vermont 50 1702 58
## 10899 2020-09-16 Virgin Islands 78 1232 19
## 10900 2020-09-16 Virginia 51 136359 2884
## 10901 2020-09-16 Washington 53 84714 2113
## 10902 2020-09-16 West Virginia 54 13196 290
## 10903 2020-09-16 Wisconsin 55 98501 1238
## 10904 2020-09-16 Wyoming 56 4566 46
## 10905 2020-09-17 Alabama 1 141757 2401
## 10906 2020-09-17 Alaska 2 7413 41
## 10907 2020-09-17 Arizona 4 211663 5411
## 10908 2020-09-17 Arkansas 5 73211 1166
## 10909 2020-09-17 California 6 776945 14807
## 10910 2020-09-17 Colorado 8 63613 2016
## 10911 2020-09-17 Connecticut 9 55386 4488
## 10912 2020-09-17 Delaware 10 19318 619
## 10913 2020-09-17 District of Columbia 11 14790 619
## 10914 2020-09-17 Florida 12 674448 13085
## 10915 2020-09-17 Georgia 13 284219 6328
## 10916 2020-09-17 Guam 66 3014 31
## 10917 2020-09-17 Hawaii 15 11211 106
## 10918 2020-09-17 Idaho 16 36924 435
## 10919 2020-09-17 Illinois 17 271370 8643
## 10920 2020-09-17 Indiana 18 110863 3478
## 10921 2020-09-17 Iowa 19 77865 1257
## 10922 2020-09-17 Kansas 20 52039 586
## 10923 2020-09-17 Kentucky 21 63412 1127
## 10924 2020-09-17 Louisiana 22 160343 5311
## 10925 2020-09-17 Maine 23 4962 138
## 10926 2020-09-17 Maryland 24 119017 3861
## 10927 2020-09-17 Massachusetts 25 126128 9260
## 10928 2020-09-17 Michigan 26 126794 6956
## 10929 2020-09-17 Minnesota 27 86774 1994
## 10930 2020-09-17 Mississippi 28 91935 2780
## 10931 2020-09-17 Missouri 29 110554 1864
## 10932 2020-09-17 Montana 30 9721 143
## 10933 2020-09-17 Nebraska 31 39921 457
## 10934 2020-09-17 Nevada 32 74792 1509
## 10935 2020-09-17 New Hampshire 33 7814 438
## 10936 2020-09-17 New Jersey 34 200152 16057
## 10937 2020-09-17 New Mexico 35 27199 836
## 10938 2020-09-17 New York 36 451971 32669
## 10939 2020-09-17 North Carolina 37 190307 3208
## 10940 2020-09-17 North Dakota 38 16726 185
## 10941 2020-09-17 Northern Mariana Islands 69 62 2
## 10942 2020-09-17 Ohio 39 141585 4580
## 10943 2020-09-17 Oklahoma 40 73318 930
## 10944 2020-09-17 Oregon 41 30068 521
## 10945 2020-09-17 Pennsylvania 42 152813 7978
## 10946 2020-09-17 Puerto Rico 72 38867 588
## 10947 2020-09-17 Rhode Island 44 23488 1085
## 10948 2020-09-17 South Carolina 45 135446 3158
## 10949 2020-09-17 South Dakota 46 17686 193
## 10950 2020-09-17 Tennessee 47 175702 2141
## 10951 2020-09-17 Texas 48 710423 14909
## 10952 2020-09-17 Utah 49 60662 437
## 10953 2020-09-17 Vermont 50 1705 58
## 10954 2020-09-17 Virgin Islands 78 1238 19
## 10955 2020-09-17 Virginia 51 137460 2920
## 10956 2020-09-17 Washington 53 85101 2123
## 10957 2020-09-17 West Virginia 54 13430 294
## 10958 2020-09-17 Wisconsin 55 100619 1240
## 10959 2020-09-17 Wyoming 56 4652 49
## 10960 2020-09-18 Alabama 1 142863 2428
## 10961 2020-09-18 Alaska 2 7528 42
## 10962 2020-09-18 Arizona 4 213663 5455
## 10963 2020-09-18 Arkansas 5 74082 1173
## 10964 2020-09-18 California 6 781437 14912
## 10965 2020-09-18 Colorado 8 64277 2020
## 10966 2020-09-18 Connecticut 9 55527 4492
## 10967 2020-09-18 Delaware 10 19366 620
## 10968 2020-09-18 District of Columbia 11 14852 619
## 10969 2020-09-18 Florida 12 677652 13224
## 10970 2020-09-18 Georgia 13 286170 6390
## 10971 2020-09-18 Guam 66 3043 34
## 10972 2020-09-18 Hawaii 15 11348 119
## 10973 2020-09-18 Idaho 16 37358 439
## 10974 2020-09-18 Illinois 17 273596 8666
## 10975 2020-09-18 Indiana 18 111900 3495
## 10976 2020-09-18 Iowa 19 78839 1264
## 10977 2020-09-18 Kansas 20 53403 596
## 10978 2020-09-18 Kentucky 21 64155 1132
## 10979 2020-09-18 Louisiana 22 161322 5340
## 10980 2020-09-18 Maine 23 5005 138
## 10981 2020-09-18 Maryland 24 119559 3869
## 10982 2020-09-18 Massachusetts 25 126582 9269
## 10983 2020-09-18 Michigan 26 127558 6955
## 10984 2020-09-18 Minnesota 27 87859 2002
## 10985 2020-09-18 Mississippi 28 92432 2792
## 10986 2020-09-18 Missouri 29 112547 1892
## 10987 2020-09-18 Montana 30 9934 146
## 10988 2020-09-18 Nebraska 31 40387 457
## 10989 2020-09-18 Nevada 32 75153 1526
## 10990 2020-09-18 New Hampshire 33 7861 438
## 10991 2020-09-18 New Jersey 34 200639 16061
## 10992 2020-09-18 New Mexico 35 27350 841
## 10993 2020-09-18 New York 36 452764 32682
## 10994 2020-09-18 North Carolina 37 191672 3232
## 10995 2020-09-18 North Dakota 38 17233 187
## 10996 2020-09-18 Northern Mariana Islands 69 62 2
## 10997 2020-09-18 Ohio 39 142596 4608
## 10998 2020-09-18 Oklahoma 40 74567 939
## 10999 2020-09-18 Oregon 41 30351 524
## 11000 2020-09-18 Pennsylvania 42 153560 8006
## 11001 2020-09-18 Puerto Rico 72 39684 599
## 11002 2020-09-18 Rhode Island 44 23620 1088
## 11003 2020-09-18 South Carolina 45 136318 3177
## 11004 2020-09-18 South Dakota 46 18075 198
## 11005 2020-09-18 Tennessee 47 177707 2173
## 11006 2020-09-18 Texas 48 713652 15037
## 11007 2020-09-18 Utah 49 61786 437
## 11008 2020-09-18 Vermont 50 1706 58
## 11009 2020-09-18 Virgin Islands 78 1257 19
## 11010 2020-09-18 Virginia 51 138702 2949
## 11011 2020-09-18 Washington 53 85583 2130
## 11012 2020-09-18 West Virginia 54 13683 297
## 11013 2020-09-18 Wisconsin 55 103211 1247
## 11014 2020-09-18 Wyoming 56 4747 49
## 11015 2020-09-19 Alabama 1 144164 2437
## 11016 2020-09-19 Alaska 2 7613 42
## 11017 2020-09-19 Arizona 4 213551 5471
## 11018 2020-09-19 Arkansas 5 75160 1181
## 11019 2020-09-19 California 6 785077 15023
## 11020 2020-09-19 Colorado 8 64694 2022
## 11021 2020-09-19 Connecticut 9 55527 4492
## 11022 2020-09-19 Delaware 10 19449 621
## 11023 2020-09-19 District of Columbia 11 14902 619
## 11024 2020-09-19 Florida 12 681225 13286
## 11025 2020-09-19 Georgia 13 288059 6450
## 11026 2020-09-19 Guam 66 3043 35
## 11027 2020-09-19 Hawaii 15 11457 119
## 11028 2020-09-19 Idaho 16 37624 441
## 11029 2020-09-19 Illinois 17 276057 8688
## 11030 2020-09-19 Indiana 18 112982 3503
## 11031 2020-09-19 Iowa 19 79785 1265
## 11032 2020-09-19 Kansas 20 53420 596
## 11033 2020-09-19 Kentucky 21 65068 1137
## 11034 2020-09-19 Louisiana 22 161322 5340
## 11035 2020-09-19 Maine 23 5035 139
## 11036 2020-09-19 Maryland 24 120107 3876
## 11037 2020-09-19 Massachusetts 25 127181 9295
## 11038 2020-09-19 Michigan 26 128112 6970
## 11039 2020-09-19 Minnesota 27 88773 2015
## 11040 2020-09-19 Mississippi 28 93087 2809
## 11041 2020-09-19 Missouri 29 113794 1905
## 11042 2020-09-19 Montana 30 10193 156
## 11043 2020-09-19 Nebraska 31 40797 457
## 11044 2020-09-19 Nevada 32 75524 1528
## 11045 2020-09-19 New Hampshire 33 7920 438
## 11046 2020-09-19 New Jersey 34 201100 16064
## 11047 2020-09-19 New Mexico 35 27512 847
## 11048 2020-09-19 New York 36 453747 32679
## 11049 2020-09-19 North Carolina 37 192751 3260
## 11050 2020-09-19 North Dakota 38 17610 195
## 11051 2020-09-19 Northern Mariana Islands 69 68 2
## 11052 2020-09-19 Ohio 39 143547 4612
## 11053 2020-09-19 Oklahoma 40 75804 943
## 11054 2020-09-19 Oregon 41 30600 527
## 11055 2020-09-19 Pennsylvania 42 154261 8028
## 11056 2020-09-19 Puerto Rico 72 40993 605
## 11057 2020-09-19 Rhode Island 44 23620 1088
## 11058 2020-09-19 South Carolina 45 137240 3188
## 11059 2020-09-19 South Dakota 46 18444 200
## 11060 2020-09-19 Tennessee 47 179017 2193
## 11061 2020-09-19 Texas 48 716914 15124
## 11062 2020-09-19 Utah 49 62893 440
## 11063 2020-09-19 Vermont 50 1710 58
## 11064 2020-09-19 Virgin Islands 78 1257 19
## 11065 2020-09-19 Virginia 51 139655 2990
## 11066 2020-09-19 Washington 53 85886 2130
## 11067 2020-09-19 West Virginia 54 13874 308
## 11068 2020-09-19 Wisconsin 55 105609 1249
## 11069 2020-09-19 Wyoming 56 4780 49
## 11070 2020-09-20 Alabama 1 144962 2437
## 11071 2020-09-20 Alaska 2 7704 42
## 11072 2020-09-20 Arizona 4 214018 5480
## 11073 2020-09-20 Arkansas 5 75723 1181
## 11074 2020-09-20 California 6 788078 15018
## 11075 2020-09-20 Colorado 8 65248 2023
## 11076 2020-09-20 Connecticut 9 55527 4492
## 11077 2020-09-20 Delaware 10 19566 621
## 11078 2020-09-20 District of Columbia 11 14955 620
## 11079 2020-09-20 Florida 12 683746 13295
## 11080 2020-09-20 Georgia 13 289096 6453
## 11081 2020-09-20 Guam 66 3043 35
## 11082 2020-09-20 Hawaii 15 11534 119
## 11083 2020-09-20 Idaho 16 37768 443
## 11084 2020-09-20 Illinois 17 277373 8700
## 11085 2020-09-20 Indiana 18 113728 3506
## 11086 2020-09-20 Iowa 19 80410 1265
## 11087 2020-09-20 Kansas 20 53433 597
## 11088 2020-09-20 Kentucky 21 65413 1139
## 11089 2020-09-20 Louisiana 22 162258 5366
## 11090 2020-09-20 Maine 23 5079 139
## 11091 2020-09-20 Maryland 24 120656 3879
## 11092 2020-09-20 Massachusetts 25 127540 9310
## 11093 2020-09-20 Michigan 26 128148 6971
## 11094 2020-09-20 Minnesota 27 90069 2017
## 11095 2020-09-20 Mississippi 28 93364 2810
## 11096 2020-09-20 Missouri 29 115000 1896
## 11097 2020-09-20 Montana 30 10325 157
## 11098 2020-09-20 Nebraska 31 41083 457
## 11099 2020-09-20 Nevada 32 75914 1532
## 11100 2020-09-20 New Hampshire 33 7947 438
## 11101 2020-09-20 New Jersey 34 201553 16067
## 11102 2020-09-20 New Mexico 35 27579 849
## 11103 2020-09-20 New York 36 454612 32686
## 11104 2020-09-20 North Carolina 37 193978 3270
## 11105 2020-09-20 North Dakota 38 17961 195
## 11106 2020-09-20 Northern Mariana Islands 69 68 2
## 11107 2020-09-20 Ohio 39 144309 4615
## 11108 2020-09-20 Oklahoma 40 76807 946
## 11109 2020-09-20 Oregon 41 30802 528
## 11110 2020-09-20 Pennsylvania 42 154924 8049
## 11111 2020-09-20 Puerto Rico 72 41838 608
## 11112 2020-09-20 Rhode Island 44 23620 1088
## 11113 2020-09-20 South Carolina 45 137708 3199
## 11114 2020-09-20 South Dakota 46 18696 202
## 11115 2020-09-20 Tennessee 47 180621 2195
## 11116 2020-09-20 Texas 48 722460 15159
## 11117 2020-09-20 Utah 49 63774 440
## 11118 2020-09-20 Vermont 50 1715 58
## 11119 2020-09-20 Virgin Islands 78 1269 19
## 11120 2020-09-20 Virginia 51 140511 3015
## 11121 2020-09-20 Washington 53 86169 2130
## 11122 2020-09-20 West Virginia 54 14054 310
## 11123 2020-09-20 Wisconsin 55 107343 1250
## 11124 2020-09-20 Wyoming 56 4871 49
## 11125 2020-09-21 Alabama 1 145780 2439
## 11126 2020-09-21 Alaska 2 7775 42
## 11127 2020-09-21 Arizona 4 214251 5482
## 11128 2020-09-21 Arkansas 5 76364 1197
## 11129 2020-09-21 California 6 792220 15069
## 11130 2020-09-21 Colorado 8 65936 2031
## 11131 2020-09-21 Connecticut 9 56024 4495
## 11132 2020-09-21 Delaware 10 19667 627
## 11133 2020-09-21 District of Columbia 11 14978 621
## 11134 2020-09-21 Florida 12 685431 13316
## 11135 2020-09-21 Georgia 13 289975 6455
## 11136 2020-09-21 Guam 66 3116 36
## 11137 2020-09-21 Hawaii 15 11590 119
## 11138 2020-09-21 Idaho 16 38196 447
## 11139 2020-09-21 Illinois 17 279032 8717
## 11140 2020-09-21 Indiana 18 114251 3512
## 11141 2020-09-21 Iowa 19 81006 1284
## 11142 2020-09-21 Kansas 20 54956 604
## 11143 2020-09-21 Kentucky 21 65905 1141
## 11144 2020-09-21 Louisiana 22 162501 5375
## 11145 2020-09-21 Maine 23 5106 140
## 11146 2020-09-21 Maryland 24 121068 3883
## 11147 2020-09-21 Massachusetts 25 127796 9317
## 11148 2020-09-21 Michigan 26 129655 6982
## 11149 2020-09-21 Minnesota 27 90994 2021
## 11150 2020-09-21 Mississippi 28 93556 2810
## 11151 2020-09-21 Missouri 29 116814 1936
## 11152 2020-09-21 Montana 30 10509 160
## 11153 2020-09-21 Nebraska 31 41388 464
## 11154 2020-09-21 Nevada 32 76119 1531
## 11155 2020-09-21 New Hampshire 33 7952 438
## 11156 2020-09-21 New Jersey 34 201945 16069
## 11157 2020-09-21 New Mexico 35 27683 851
## 11158 2020-09-21 New York 36 455187 32691
## 11159 2020-09-21 North Carolina 37 195093 3283
## 11160 2020-09-21 North Dakota 38 18247 196
## 11161 2020-09-21 Northern Mariana Islands 69 69 2
## 11162 2020-09-21 Ohio 39 145165 4623
## 11163 2020-09-21 Oklahoma 40 77908 948
## 11164 2020-09-21 Oregon 41 30999 532
## 11165 2020-09-21 Pennsylvania 42 155729 8080
## 11166 2020-09-21 Puerto Rico 72 42476 609
## 11167 2020-09-21 Rhode Island 44 23932 1097
## 11168 2020-09-21 South Carolina 45 138124 3212
## 11169 2020-09-21 South Dakota 46 18869 202
## 11170 2020-09-21 Tennessee 47 181725 2209
## 11171 2020-09-21 Texas 48 744736 15212
## 11172 2020-09-21 Utah 49 64404 441
## 11173 2020-09-21 Vermont 50 1719 58
## 11174 2020-09-21 Virgin Islands 78 1269 19
## 11175 2020-09-21 Virginia 51 141138 3021
## 11176 2020-09-21 Washington 53 86803 2137
## 11177 2020-09-21 West Virginia 54 14171 312
## 11178 2020-09-21 Wisconsin 55 108656 1253
## 11179 2020-09-21 Wyoming 56 4944 49
## 11180 2020-09-22 Alabama 1 146584 2457
## 11181 2020-09-22 Alaska 2 7821 42
## 11182 2020-09-22 Arizona 4 214846 5501
## 11183 2020-09-22 Arkansas 5 76981 1209
## 11184 2020-09-22 California 6 795080 15209
## 11185 2020-09-22 Colorado 8 66552 2034
## 11186 2020-09-22 Connecticut 9 56160 4496
## 11187 2020-09-22 Delaware 10 19761 628
## 11188 2020-09-22 District of Columbia 11 15021 621
## 11189 2020-09-22 Florida 12 687901 13415
## 11190 2020-09-22 Georgia 13 290930 6524
## 11191 2020-09-22 Guam 66 3159 38
## 11192 2020-09-22 Hawaii 15 11653 119
## 11193 2020-09-22 Idaho 16 38676 452
## 11194 2020-09-22 Illinois 17 280511 8741
## 11195 2020-09-22 Indiana 18 114864 3520
## 11196 2020-09-22 Iowa 19 81674 1293
## 11197 2020-09-22 Kansas 20 55237 618
## 11198 2020-09-22 Kentucky 21 66624 1148
## 11199 2020-09-22 Louisiana 22 163253 5386
## 11200 2020-09-22 Maine 23 5146 140
## 11201 2020-09-22 Maryland 24 121409 3895
## 11202 2020-09-22 Massachusetts 25 127969 9328
## 11203 2020-09-22 Michigan 26 130406 6998
## 11204 2020-09-22 Minnesota 27 91474 2031
## 11205 2020-09-22 Mississippi 28 94021 2846
## 11206 2020-09-22 Missouri 29 118574 1974
## 11207 2020-09-22 Montana 30 10792 163
## 11208 2020-09-22 Nebraska 31 41828 473
## 11209 2020-09-22 Nevada 32 76376 1546
## 11210 2020-09-22 New Hampshire 33 7990 438
## 11211 2020-09-22 New Jersey 34 202371 16076
## 11212 2020-09-22 New Mexico 35 27790 854
## 11213 2020-09-22 New York 36 455938 32690
## 11214 2020-09-22 North Carolina 37 196258 3320
## 11215 2020-09-22 North Dakota 38 18511 199
## 11216 2020-09-22 Northern Mariana Islands 69 69 2
## 11217 2020-09-22 Ohio 39 145850 4635
## 11218 2020-09-22 Oklahoma 40 79072 962
## 11219 2020-09-22 Oregon 41 31323 535
## 11220 2020-09-22 Pennsylvania 42 156512 8099
## 11221 2020-09-22 Puerto Rico 72 42596 613
## 11222 2020-09-22 Rhode Island 44 24044 1099
## 11223 2020-09-22 South Carolina 45 140789 3243
## 11224 2020-09-22 South Dakota 46 19189 202
## 11225 2020-09-22 Tennessee 47 182546 2236
## 11226 2020-09-22 Texas 48 749069 15322
## 11227 2020-09-22 Utah 49 65058 443
## 11228 2020-09-22 Vermont 50 1721 58
## 11229 2020-09-22 Virgin Islands 78 1278 19
## 11230 2020-09-22 Virginia 51 142010 3060
## 11231 2020-09-22 Washington 53 87233 2163
## 11232 2020-09-22 West Virginia 54 14384 317
## 11233 2020-09-22 Wisconsin 55 110393 1259
## 11234 2020-09-22 Wyoming 56 5016 49
## 11235 2020-09-23 Alabama 1 147153 2488
## 11236 2020-09-23 Alaska 2 7875 42
## 11237 2020-09-23 Arizona 4 215284 5526
## 11238 2020-09-23 Arkansas 5 77963 1229
## 11239 2020-09-23 California 6 798351 15313
## 11240 2020-09-23 Colorado 8 67186 2038
## 11241 2020-09-23 Connecticut 9 56315 4497
## 11242 2020-09-23 Delaware 10 19830 629
## 11243 2020-09-23 District of Columbia 11 15050 621
## 11244 2020-09-23 Florida 12 690491 13617
## 11245 2020-09-23 Georgia 13 292797 6620
## 11246 2020-09-23 Guam 66 3204 38
## 11247 2020-09-23 Hawaii 15 11820 121
## 11248 2020-09-23 Idaho 16 39030 454
## 11249 2020-09-23 Illinois 17 282331 8762
## 11250 2020-09-23 Indiana 18 115578 3530
## 11251 2020-09-23 Iowa 19 82956 1298
## 11252 2020-09-23 Kansas 20 56355 629
## 11253 2020-09-23 Kentucky 21 67590 1161
## 11254 2020-09-23 Louisiana 22 163869 5407
## 11255 2020-09-23 Maine 23 5171 140
## 11256 2020-09-23 Maryland 24 121793 3902
## 11257 2020-09-23 Massachusetts 25 128512 9347
## 11258 2020-09-23 Michigan 26 131292 7013
## 11259 2020-09-23 Minnesota 27 92152 2037
## 11260 2020-09-23 Mississippi 28 94573 2870
## 11261 2020-09-23 Missouri 29 120124 2035
## 11262 2020-09-23 Montana 30 11034 165
## 11263 2020-09-23 Nebraska 31 42278 477
## 11264 2020-09-23 Nevada 32 76907 1556
## 11265 2020-09-23 New Hampshire 33 8007 438
## 11266 2020-09-23 New Jersey 34 202779 16082
## 11267 2020-09-23 New Mexico 35 27987 857
## 11268 2020-09-23 New York 36 456604 32691
## 11269 2020-09-23 North Carolina 37 197431 3345
## 11270 2020-09-23 North Dakota 38 18984 206
## 11271 2020-09-23 Northern Mariana Islands 69 69 2
## 11272 2020-09-23 Ohio 39 146753 4687
## 11273 2020-09-23 Oklahoma 40 80161 970
## 11274 2020-09-23 Oregon 41 31513 538
## 11275 2020-09-23 Pennsylvania 42 157373 8137
## 11276 2020-09-23 Puerto Rico 72 42660 617
## 11277 2020-09-23 Rhode Island 44 24177 1102
## 11278 2020-09-23 South Carolina 45 141686 3262
## 11279 2020-09-23 South Dakota 46 19634 202
## 11280 2020-09-23 Tennessee 47 184068 2252
## 11281 2020-09-23 Texas 48 753551 15455
## 11282 2020-09-23 Utah 49 65948 444
## 11283 2020-09-23 Vermont 50 1722 58
## 11284 2020-09-23 Virgin Islands 78 1290 19
## 11285 2020-09-23 Virginia 51 142590 3089
## 11286 2020-09-23 Washington 53 88042 2175
## 11287 2020-09-23 West Virginia 54 14504 319
## 11288 2020-09-23 Wisconsin 55 112276 1269
## 11289 2020-09-23 Wyoming 56 5169 50
## 11290 2020-09-24 Alabama 1 148206 2506
## 11291 2020-09-24 Alaska 2 8015 43
## 11292 2020-09-24 Arizona 4 215852 5560
## 11293 2020-09-24 Arkansas 5 79049 1246
## 11294 2020-09-24 California 6 801674 15389
## 11295 2020-09-24 Colorado 8 67745 2042
## 11296 2020-09-24 Connecticut 9 56472 4499
## 11297 2020-09-24 Delaware 10 19947 630
## 11298 2020-09-24 District of Columbia 11 15106 621
## 11299 2020-09-24 Florida 12 693032 13794
## 11300 2020-09-24 Georgia 13 294334 6667
## 11301 2020-09-24 Guam 66 3232 39
## 11302 2020-09-24 Hawaii 15 11908 123
## 11303 2020-09-24 Idaho 16 39547 458
## 11304 2020-09-24 Illinois 17 284620 8793
## 11305 2020-09-24 Indiana 18 116481 3548
## 11306 2020-09-24 Iowa 19 83993 1303
## 11307 2020-09-24 Kansas 20 56461 633
## 11308 2020-09-24 Kentucky 21 68230 1166
## 11309 2020-09-24 Louisiana 22 164446 5423
## 11310 2020-09-24 Maine 23 5215 140
## 11311 2020-09-24 Maryland 24 122293 3909
## 11312 2020-09-24 Massachusetts 25 128993 9362
## 11313 2020-09-24 Michigan 26 132400 7020
## 11314 2020-09-24 Minnesota 27 93064 2040
## 11315 2020-09-24 Mississippi 28 95310 2874
## 11316 2020-09-24 Missouri 29 121485 2055
## 11317 2020-09-24 Montana 30 11381 165
## 11318 2020-09-24 Nebraska 31 42731 478
## 11319 2020-09-24 Nevada 32 77338 1565
## 11320 2020-09-24 New Hampshire 33 8044 438
## 11321 2020-09-24 New Jersey 34 203343 16091
## 11322 2020-09-24 New Mexico 35 28224 859
## 11323 2020-09-24 New York 36 457557 32696
## 11324 2020-09-24 North Carolina 37 199236 3380
## 11325 2020-09-24 North Dakota 38 19454 215
## 11326 2020-09-24 Northern Mariana Islands 69 69 2
## 11327 2020-09-24 Ohio 39 147744 4715
## 11328 2020-09-24 Oklahoma 40 81244 981
## 11329 2020-09-24 Oregon 41 31869 540
## 11330 2020-09-24 Pennsylvania 42 158221 8150
## 11331 2020-09-24 Puerto Rico 72 43842 627
## 11332 2020-09-24 Rhode Island 44 24311 1106
## 11333 2020-09-24 South Carolina 45 142707 3279
## 11334 2020-09-24 South Dakota 46 20097 210
## 11335 2020-09-24 Tennessee 47 185121 2287
## 11336 2020-09-24 Texas 48 758379 15587
## 11337 2020-09-24 Utah 49 67167 444
## 11338 2020-09-24 Vermont 50 1724 58
## 11339 2020-09-24 Virgin Islands 78 1290 19
## 11340 2020-09-24 Virginia 51 143492 3113
## 11341 2020-09-24 Washington 53 88597 2175
## 11342 2020-09-24 West Virginia 54 14706 325
## 11343 2020-09-24 Wisconsin 55 114743 1275
## 11344 2020-09-24 Wyoming 56 5305 50
## 11345 2020-09-25 Alabama 1 150658 2491
## 11346 2020-09-25 Alaska 2 8133 48
## 11347 2020-09-25 Arizona 4 216367 5588
## 11348 2020-09-25 Arkansas 5 79946 1266
## 11349 2020-09-25 California 6 805736 15533
## 11350 2020-09-25 Colorado 8 68506 2045
## 11351 2020-09-25 Connecticut 9 56587 4501
## 11352 2020-09-25 Delaware 10 20085 631
## 11353 2020-09-25 District of Columbia 11 15163 623
## 11354 2020-09-25 Florida 12 695879 13914
## 11355 2020-09-25 Georgia 13 296089 6717
## 11356 2020-09-25 Guam 66 3255 40
## 11357 2020-09-25 Hawaii 15 12039 126
## 11358 2020-09-25 Idaho 16 40228 458
## 11359 2020-09-25 Illinois 17 287375 8826
## 11360 2020-09-25 Indiana 18 117656 3566
## 11361 2020-09-25 Iowa 19 85031 1312
## 11362 2020-09-25 Kansas 20 57852 634
## 11363 2020-09-25 Kentucky 21 69150 1179
## 11364 2020-09-25 Louisiana 22 165152 5444
## 11365 2020-09-25 Maine 23 5235 140
## 11366 2020-09-25 Maryland 24 122850 3917
## 11367 2020-09-25 Massachusetts 25 129481 9373
## 11368 2020-09-25 Michigan 26 133443 7028
## 11369 2020-09-25 Minnesota 27 94241 2046
## 11370 2020-09-25 Mississippi 28 96032 2894
## 11371 2020-09-25 Missouri 29 123544 2075
## 11372 2020-09-25 Montana 30 11656 170
## 11373 2020-09-25 Nebraska 31 43162 483
## 11374 2020-09-25 Nevada 32 77930 1573
## 11375 2020-09-25 New Hampshire 33 8085 438
## 11376 2020-09-25 New Jersey 34 203891 16097
## 11377 2020-09-25 New Mexico 35 28487 865
## 11378 2020-09-25 New York 36 458466 32708
## 11379 2020-09-25 North Carolina 37 204658 3427
## 11380 2020-09-25 North Dakota 38 19888 222
## 11381 2020-09-25 Northern Mariana Islands 69 69 2
## 11382 2020-09-25 Ohio 39 148894 4734
## 11383 2020-09-25 Oklahoma 40 82520 993
## 11384 2020-09-25 Oregon 41 32328 545
## 11385 2020-09-25 Pennsylvania 42 159051 8157
## 11386 2020-09-25 Puerto Rico 72 44905 635
## 11387 2020-09-25 Rhode Island 44 24181 1107
## 11388 2020-09-25 South Carolina 45 143902 3297
## 11389 2020-09-25 South Dakota 46 20554 216
## 11390 2020-09-25 Tennessee 47 186769 2326
## 11391 2020-09-25 Texas 48 761644 15637
## 11392 2020-09-25 Utah 49 68537 448
## 11393 2020-09-25 Vermont 50 1731 58
## 11394 2020-09-25 Virgin Islands 78 1296 19
## 11395 2020-09-25 Virginia 51 144433 3136
## 11396 2020-09-25 Washington 53 89149 2193
## 11397 2020-09-25 West Virginia 54 14953 330
## 11398 2020-09-25 Wisconsin 55 117355 1285
## 11399 2020-09-25 Wyoming 56 5420 50
## 11400 2020-09-26 Alabama 1 151591 2501
## 11401 2020-09-26 Alaska 2 8244 48
## 11402 2020-09-26 Arizona 4 216826 5623
## 11403 2020-09-26 Arkansas 5 80755 1285
## 11404 2020-09-26 California 6 809215 15588
## 11405 2020-09-26 Colorado 8 68973 2047
## 11406 2020-09-26 Connecticut 9 56587 4501
## 11407 2020-09-26 Delaware 10 20156 633
## 11408 2020-09-26 District of Columbia 11 15215 624
## 11409 2020-09-26 Florida 12 698674 14021
## 11410 2020-09-26 Georgia 13 297553 6758
## 11411 2020-09-26 Guam 66 3255 40
## 11412 2020-09-26 Hawaii 15 12166 130
## 11413 2020-09-26 Idaho 16 40411 460
## 11414 2020-09-26 Illinois 17 289683 8847
## 11415 2020-09-26 Indiana 18 118819 3577
## 11416 2020-09-26 Iowa 19 85908 1314
## 11417 2020-09-26 Kansas 20 57852 634
## 11418 2020-09-26 Kentucky 21 70038 1185
## 11419 2020-09-26 Louisiana 22 165152 5444
## 11420 2020-09-26 Maine 23 5260 140
## 11421 2020-09-26 Maryland 24 123328 3925
## 11422 2020-09-26 Massachusetts 25 130050 9391
## 11423 2020-09-26 Michigan 26 134372 7044
## 11424 2020-09-26 Minnesota 27 95711 2056
## 11425 2020-09-26 Mississippi 28 96677 2911
## 11426 2020-09-26 Missouri 29 124939 2118
## 11427 2020-09-26 Montana 30 11943 171
## 11428 2020-09-26 Nebraska 31 43596 484
## 11429 2020-09-26 Nevada 32 78464 1583
## 11430 2020-09-26 New Hampshire 33 8121 439
## 11431 2020-09-26 New Jersey 34 204641 16103
## 11432 2020-09-26 New Mexico 35 28692 870
## 11433 2020-09-26 New York 36 459472 32713
## 11434 2020-09-26 North Carolina 37 206241 3458
## 11435 2020-09-26 North Dakota 38 20383 230
## 11436 2020-09-26 Northern Mariana Islands 69 69 2
## 11437 2020-09-26 Ohio 39 150009 4740
## 11438 2020-09-26 Oklahoma 40 83510 1004
## 11439 2020-09-26 Oregon 41 32581 549
## 11440 2020-09-26 Pennsylvania 42 159937 8177
## 11441 2020-09-26 Puerto Rico 72 45413 642
## 11442 2020-09-26 Rhode Island 44 24181 1107
## 11443 2020-09-26 South Carolina 45 145273 3323
## 11444 2020-09-26 South Dakota 46 21133 218
## 11445 2020-09-26 Tennessee 47 188205 2347
## 11446 2020-09-26 Texas 48 764642 15792
## 11447 2020-09-26 Utah 49 69556 448
## 11448 2020-09-26 Vermont 50 1739 58
## 11449 2020-09-26 Virgin Islands 78 1317 19
## 11450 2020-09-26 Virginia 51 145408 3144
## 11451 2020-09-26 Washington 53 89514 2196
## 11452 2020-09-26 West Virginia 54 15158 332
## 11453 2020-09-26 Wisconsin 55 120249 1291
## 11454 2020-09-26 Wyoming 56 5465 50
## 11455 2020-09-27 Alabama 1 152321 2502
## 11456 2020-09-27 Alaska 2 8359 52
## 11457 2020-09-27 Arizona 4 217237 5623
## 11458 2020-09-27 Arkansas 5 81242 1308
## 11459 2020-09-27 California 6 811699 15608
## 11460 2020-09-27 Colorado 8 69472 2048
## 11461 2020-09-27 Connecticut 9 56587 4501
## 11462 2020-09-27 Delaware 10 20260 633
## 11463 2020-09-27 District of Columbia 11 15250 624
## 11464 2020-09-27 Florida 12 700556 14031
## 11465 2020-09-27 Georgia 13 298321 6789
## 11466 2020-09-27 Guam 66 3255 40
## 11467 2020-09-27 Hawaii 15 12264 131
## 11468 2020-09-27 Idaho 16 40501 460
## 11469 2020-09-27 Illinois 17 291271 8859
## 11470 2020-09-27 Indiana 18 119721 3580
## 11471 2020-09-27 Iowa 19 86624 1316
## 11472 2020-09-27 Kansas 20 57978 636
## 11473 2020-09-27 Kentucky 21 70385 1189
## 11474 2020-09-27 Louisiana 22 166075 5465
## 11475 2020-09-27 Maine 23 5288 140
## 11476 2020-09-27 Maryland 24 123895 3935
## 11477 2020-09-27 Massachusetts 25 130642 9404
## 11478 2020-09-27 Michigan 26 134409 7044
## 11479 2020-09-27 Minnesota 27 96786 2060
## 11480 2020-09-27 Mississippi 28 96859 2919
## 11481 2020-09-27 Missouri 29 126115 2117
## 11482 2020-09-27 Montana 30 12126 173
## 11483 2020-09-27 Nebraska 31 44063 485
## 11484 2020-09-27 Nevada 32 78820 1585
## 11485 2020-09-27 New Hampshire 33 8172 439
## 11486 2020-09-27 New Jersey 34 205339 16106
## 11487 2020-09-27 New Mexico 35 28844 870
## 11488 2020-09-27 New York 36 460340 32722
## 11489 2020-09-27 North Carolina 37 207407 3460
## 11490 2020-09-27 North Dakota 38 20727 234
## 11491 2020-09-27 Northern Mariana Islands 69 69 2
## 11492 2020-09-27 Ohio 39 150809 4741
## 11493 2020-09-27 Oklahoma 40 84333 1006
## 11494 2020-09-27 Oregon 41 32820 549
## 11495 2020-09-27 Pennsylvania 42 160770 8180
## 11496 2020-09-27 Puerto Rico 72 46304 644
## 11497 2020-09-27 Rhode Island 44 24181 1107
## 11498 2020-09-27 South Carolina 45 145887 3326
## 11499 2020-09-27 South Dakota 46 21541 218
## 11500 2020-09-27 Tennessee 47 190037 2350
## 11501 2020-09-27 Texas 48 770539 15831
## 11502 2020-09-27 Utah 49 70616 453
## 11503 2020-09-27 Vermont 50 1742 58
## 11504 2020-09-27 Virgin Islands 78 1317 19
## 11505 2020-09-27 Virginia 51 146144 3159
## 11506 2020-09-27 Washington 53 89822 2196
## 11507 2020-09-27 West Virginia 54 15348 334
## 11508 2020-09-27 Wisconsin 55 122498 1291
## 11509 2020-09-27 Wyoming 56 5633 50
## 11510 2020-09-28 Alabama 1 152983 2501
## 11511 2020-09-28 Alaska 2 8477 52
## 11512 2020-09-28 Arizona 4 217513 5624
## 11513 2020-09-28 Arkansas 5 82049 1329
## 11514 2020-09-28 California 6 814797 15641
## 11515 2020-09-28 Colorado 8 69967 2052
## 11516 2020-09-28 Connecticut 9 57147 4503
## 11517 2020-09-28 Delaware 10 20389 634
## 11518 2020-09-28 District of Columbia 11 15264 624
## 11519 2020-09-28 Florida 12 701294 14036
## 11520 2020-09-28 Georgia 13 298963 6803
## 11521 2020-09-28 Guam 66 3255 40
## 11522 2020-09-28 Hawaii 15 12351 131
## 11523 2020-09-28 Idaho 16 41386 460
## 11524 2020-09-28 Illinois 17 293169 8877
## 11525 2020-09-28 Indiana 18 120581 3591
## 11526 2020-09-28 Iowa 19 87256 1324
## 11527 2020-09-28 Kansas 20 59793 641
## 11528 2020-09-28 Kentucky 21 71003 1195
## 11529 2020-09-28 Louisiana 22 166315 5480
## 11530 2020-09-28 Maine 23 5300 140
## 11531 2020-09-28 Maryland 24 124371 3938
## 11532 2020-09-28 Massachusetts 25 131072 9415
## 11533 2020-09-28 Michigan 26 135782 7052
## 11534 2020-09-28 Minnesota 27 97690 2067
## 11535 2020-09-28 Mississippi 28 97049 2921
## 11536 2020-09-28 Missouri 29 127894 2132
## 11537 2020-09-28 Montana 30 12538 174
## 11538 2020-09-28 Nebraska 31 44578 487
## 11539 2020-09-28 Nevada 32 79313 1586
## 11540 2020-09-28 New Hampshire 33 8208 439
## 11541 2020-09-28 New Jersey 34 205898 16107
## 11542 2020-09-28 New Mexico 35 28985 873
## 11543 2020-09-28 New York 36 461176 32737
## 11544 2020-09-28 North Carolina 37 208497 3469
## 11545 2020-09-28 North Dakota 38 20986 237
## 11546 2020-09-28 Northern Mariana Islands 69 69 2
## 11547 2020-09-28 Ohio 39 151802 4746
## 11548 2020-09-28 Oklahoma 40 85194 1007
## 11549 2020-09-28 Oregon 41 32995 549
## 11550 2020-09-28 Pennsylvania 42 161642 8181
## 11551 2020-09-28 Puerto Rico 72 47422 648
## 11552 2020-09-28 Rhode Island 44 24424 1110
## 11553 2020-09-28 South Carolina 45 146455 3337
## 11554 2020-09-28 South Dakota 46 21738 218
## 11555 2020-09-28 Tennessee 47 190991 2362
## 11556 2020-09-28 Texas 48 773679 15898
## 11557 2020-09-28 Utah 49 71442 453
## 11558 2020-09-28 Vermont 50 1745 58
## 11559 2020-09-28 Virgin Islands 78 1318 20
## 11560 2020-09-28 Virginia 51 146593 3172
## 11561 2020-09-28 Washington 53 90596 2199
## 11562 2020-09-28 West Virginia 54 15512 337
## 11563 2020-09-28 Wisconsin 55 124320 1293
## 11564 2020-09-28 Wyoming 56 5754 50
## 11565 2020-09-29 Alabama 1 153554 2517
## 11566 2020-09-29 Alaska 2 8602 52
## 11567 2020-09-29 Arizona 4 218185 5632
## 11568 2020-09-29 Arkansas 5 82755 1350
## 11569 2020-09-29 California 6 817940 15791
## 11570 2020-09-29 Colorado 8 70458 2058
## 11571 2020-09-29 Connecticut 9 57329 4505
## 11572 2020-09-29 Delaware 10 20531 635
## 11573 2020-09-29 District of Columbia 11 15300 626
## 11574 2020-09-29 Florida 12 704560 14142
## 11575 2020-09-29 Georgia 13 300019 6836
## 11576 2020-09-29 Guam 66 3412 48
## 11577 2020-09-29 Hawaii 15 12436 133
## 11578 2020-09-29 Idaho 16 41854 466
## 11579 2020-09-29 Illinois 17 294673 8901
## 11580 2020-09-29 Indiana 18 121327 3612
## 11581 2020-09-29 Iowa 19 88234 1341
## 11582 2020-09-29 Kansas 20 59951 650
## 11583 2020-09-29 Kentucky 21 71921 1205
## 11584 2020-09-29 Louisiana 22 166848 5490
## 11585 2020-09-29 Maine 23 5337 141
## 11586 2020-09-29 Maryland 24 124805 3946
## 11587 2020-09-29 Massachusetts 25 131584 9423
## 11588 2020-09-29 Michigan 26 136899 7073
## 11589 2020-09-29 Minnesota 27 98499 2072
## 11590 2020-09-29 Mississippi 28 97638 2957
## 11591 2020-09-29 Missouri 29 128816 2148
## 11592 2020-09-29 Montana 30 12825 177
## 11593 2020-09-29 Nebraska 31 45044 493
## 11594 2020-09-29 Nevada 32 79691 1594
## 11595 2020-09-29 New Hampshire 33 8233 439
## 11596 2020-09-29 New Jersey 34 206354 16117
## 11597 2020-09-29 New Mexico 35 29157 875
## 11598 2020-09-29 New York 36 462364 32743
## 11599 2020-09-29 North Carolina 37 209384 3511
## 11600 2020-09-29 North Dakota 38 21404 242
## 11601 2020-09-29 Northern Mariana Islands 69 69 2
## 11602 2020-09-29 Ohio 39 152907 4783
## 11603 2020-09-29 Oklahoma 40 86219 1018
## 11604 2020-09-29 Oregon 41 33297 555
## 11605 2020-09-29 Pennsylvania 42 163219 8196
## 11606 2020-09-29 Puerto Rico 72 48467 654
## 11607 2020-09-29 Rhode Island 44 24556 1113
## 11608 2020-09-29 South Carolina 45 147634 3359
## 11609 2020-09-29 South Dakota 46 21997 223
## 11610 2020-09-29 Tennessee 47 191859 2393
## 11611 2020-09-29 Texas 48 780543 15994
## 11612 2020-09-29 Utah 49 72136 457
## 11613 2020-09-29 Vermont 50 1749 58
## 11614 2020-09-29 Virgin Islands 78 1318 20
## 11615 2020-09-29 Virginia 51 147516 3187
## 11616 2020-09-29 Washington 53 91011 2218
## 11617 2020-09-29 West Virginia 54 15692 345
## 11618 2020-09-29 Wisconsin 55 126744 1312
## 11619 2020-09-29 Wyoming 56 5821 50
## 11620 2020-09-30 Alabama 1 154701 2540
## 11621 2020-09-30 Alaska 2 8707 52
## 11622 2020-09-30 Arizona 4 218511 5654
## 11623 2020-09-30 Arkansas 5 83697 1369
## 11624 2020-09-30 California 6 821126 15898
## 11625 2020-09-30 Colorado 8 71090 2061
## 11626 2020-09-30 Connecticut 9 57550 4508
## 11627 2020-09-30 Delaware 10 20613 636
## 11628 2020-09-30 District of Columbia 11 15326 627
## 11629 2020-09-30 Florida 12 706508 14316
## 11630 2020-09-30 Georgia 13 301485 6861
## 11631 2020-09-30 Guam 66 3457 50
## 11632 2020-09-30 Hawaii 15 12555 135
## 11633 2020-09-30 Idaho 16 42549 469
## 11634 2020-09-30 Illinois 17 296935 8935
## 11635 2020-09-30 Indiana 18 122295 3632
## 11636 2020-09-30 Iowa 19 89248 1358
## 11637 2020-09-30 Kansas 20 60957 678
## 11638 2020-09-30 Kentucky 21 72830 1208
## 11639 2020-09-30 Louisiana 22 167458 5511
## 11640 2020-09-30 Maine 23 5391 141
## 11641 2020-09-30 Maryland 24 125217 3949
## 11642 2020-09-30 Massachusetts 25 132116 9456
## 11643 2020-09-30 Michigan 26 138074 7084
## 11644 2020-09-30 Minnesota 27 99187 2089
## 11645 2020-09-30 Mississippi 28 98190 2969
## 11646 2020-09-30 Missouri 29 130065 2157
## 11647 2020-09-30 Montana 30 13179 180
## 11648 2020-09-30 Nebraska 31 45564 493
## 11649 2020-09-30 Nevada 32 80084 1600
## 11650 2020-09-30 New Hampshire 33 8266 439
## 11651 2020-09-30 New Jersey 34 207062 16122
## 11652 2020-09-30 New Mexico 35 29435 877
## 11653 2020-09-30 New York 36 463369 32757
## 11654 2020-09-30 North Carolina 37 211004 3565
## 11655 2020-09-30 North Dakota 38 21849 250
## 11656 2020-09-30 Northern Mariana Islands 69 70 2
## 11657 2020-09-30 Ohio 39 153987 4804
## 11658 2020-09-30 Oklahoma 40 87199 1031
## 11659 2020-09-30 Oregon 41 33554 560
## 11660 2020-09-30 Pennsylvania 42 164135 8216
## 11661 2020-09-30 Puerto Rico 72 48755 661
## 11662 2020-09-30 Rhode Island 44 24748 1114
## 11663 2020-09-30 South Carolina 45 147942 3378
## 11664 2020-09-30 South Dakota 46 22389 223
## 11665 2020-09-30 Tennessee 47 193357 2429
## 11666 2020-09-30 Texas 48 784027 16102
## 11667 2020-09-30 Utah 49 73053 460
## 11668 2020-09-30 Vermont 50 1752 58
## 11669 2020-09-30 Virgin Islands 78 1318 20
## 11670 2020-09-30 Virginia 51 148271 3208
## 11671 2020-09-30 Washington 53 91560 2222
## 11672 2020-09-30 West Virginia 54 15848 350
## 11673 2020-09-30 Wisconsin 55 129172 1338
## 11674 2020-09-30 Wyoming 56 5948 50
## 11675 2020-10-01 Alabama 1 155744 2548
## 11676 2020-10-01 Alaska 2 8838 53
## 11677 2020-10-01 Arizona 4 219214 5674
## 11678 2020-10-01 Arkansas 5 84821 1384
## 11679 2020-10-01 California 6 824307 15989
## 11680 2020-10-01 Colorado 8 71723 2064
## 11681 2020-10-01 Connecticut 9 57742 4511
## 11682 2020-10-01 Delaware 10 20787 636
## 11683 2020-10-01 District of Columbia 11 15358 628
## 11684 2020-10-01 Florida 12 709136 14443
## 11685 2020-10-01 Georgia 13 303010 6903
## 11686 2020-10-01 Guam 66 3519 50
## 11687 2020-10-01 Hawaii 15 12660 138
## 11688 2020-10-01 Idaho 16 42915 473
## 11689 2020-10-01 Illinois 17 299111 8956
## 11690 2020-10-01 Indiana 18 123459 3645
## 11691 2020-10-01 Iowa 19 90483 1366
## 11692 2020-10-01 Kansas 20 61103 678
## 11693 2020-10-01 Kentucky 21 73619 1225
## 11694 2020-10-01 Louisiana 22 168009 5519
## 11695 2020-10-01 Maine 23 5431 142
## 11696 2020-10-01 Maryland 24 125997 3949
## 11697 2020-10-01 Massachusetts 25 132870 9480
## 11698 2020-10-01 Michigan 26 139064 7103
## 11699 2020-10-01 Minnesota 27 100253 2102
## 11700 2020-10-01 Mississippi 28 98886 2979
## 11701 2020-10-01 Missouri 29 131778 2184
## 11702 2020-10-01 Montana 30 13626 181
## 11703 2020-10-01 Nebraska 31 46185 497
## 11704 2020-10-01 Nevada 32 80507 1603
## 11705 2020-10-01 New Hampshire 33 8317 441
## 11706 2020-10-01 New Jersey 34 207676 16127
## 11707 2020-10-01 New Mexico 35 29661 882
## 11708 2020-10-01 New York 36 464752 32768
## 11709 2020-10-01 North Carolina 37 213218 3601
## 11710 2020-10-01 North Dakota 38 22221 259
## 11711 2020-10-01 Northern Mariana Islands 69 70 2
## 11712 2020-10-01 Ohio 39 155314 4817
## 11713 2020-10-01 Oklahoma 40 88369 1035
## 11714 2020-10-01 Oregon 41 33865 561
## 11715 2020-10-01 Pennsylvania 42 165078 8234
## 11716 2020-10-01 Puerto Rico 72 49067 665
## 11717 2020-10-01 Rhode Island 44 24914 1117
## 11718 2020-10-01 South Carolina 45 148323 3400
## 11719 2020-10-01 South Dakota 46 23136 236
## 11720 2020-10-01 Tennessee 47 194601 2473
## 11721 2020-10-01 Texas 48 788066 16220
## 11722 2020-10-01 Utah 49 74099 460
## 11723 2020-10-01 Vermont 50 1755 58
## 11724 2020-10-01 Virgin Islands 78 1326 20
## 11725 2020-10-01 Virginia 51 148721 3228
## 11726 2020-10-01 Washington 53 92166 2227
## 11727 2020-10-01 West Virginia 54 16024 354
## 11728 2020-10-01 Wisconsin 55 132176 1358
## 11729 2020-10-01 Wyoming 56 6083 53
## 11730 2020-10-02 Alabama 1 156698 2550
## 11731 2020-10-02 Alaska 2 8964 53
## 11732 2020-10-02 Arizona 4 219778 5693
## 11733 2020-10-02 Arkansas 5 85779 1391
## 11734 2020-10-02 California 6 828365 16074
## 11735 2020-10-02 Colorado 8 72454 2069
## 11736 2020-10-02 Connecticut 9 58297 4513
## 11737 2020-10-02 Delaware 10 20937 642
## 11738 2020-10-02 District of Columbia 11 15423 629
## 11739 2020-10-02 Florida 12 711796 14553
## 11740 2020-10-02 Georgia 13 304406 6945
## 11741 2020-10-02 Guam 66 3586 51
## 11742 2020-10-02 Hawaii 15 12754 141
## 11743 2020-10-02 Idaho 16 43528 478
## 11744 2020-10-02 Illinois 17 301540 9007
## 11745 2020-10-02 Indiana 18 124959 3656
## 11746 2020-10-02 Iowa 19 91483 1377
## 11747 2020-10-02 Kansas 20 62424 699
## 11748 2020-10-02 Kentucky 21 74566 1232
## 11749 2020-10-02 Louisiana 22 168826 5545
## 11750 2020-10-02 Maine 23 5468 142
## 11751 2020-10-02 Maryland 24 126711 3950
## 11752 2020-10-02 Massachusetts 25 133631 9490
## 11753 2020-10-02 Michigan 26 140057 7110
## 11754 2020-10-02 Minnesota 27 101419 2112
## 11755 2020-10-02 Mississippi 28 99558 2999
## 11756 2020-10-02 Missouri 29 133725 2207
## 11757 2020-10-02 Montana 30 14044 186
## 11758 2020-10-02 Nebraska 31 46977 498
## 11759 2020-10-02 Nevada 32 81285 1611
## 11760 2020-10-02 New Hampshire 33 8534 442
## 11761 2020-10-02 New Jersey 34 208416 16131
## 11762 2020-10-02 New Mexico 35 30000 887
## 11763 2020-10-02 New York 36 466353 32789
## 11764 2020-10-02 North Carolina 37 215035 3628
## 11765 2020-10-02 North Dakota 38 22697 267
## 11766 2020-10-02 Northern Mariana Islands 69 70 2
## 11767 2020-10-02 Ohio 39 156809 4905
## 11768 2020-10-02 Oklahoma 40 89559 1044
## 11769 2020-10-02 Oregon 41 34180 566
## 11770 2020-10-02 Pennsylvania 42 166270 8254
## 11771 2020-10-02 Puerto Rico 72 49747 673
## 11772 2020-10-02 Rhode Island 44 25076 1118
## 11773 2020-10-02 South Carolina 45 149185 3409
## 11774 2020-10-02 South Dakota 46 23522 237
## 11775 2020-10-02 Tennessee 47 195680 2489
## 11776 2020-10-02 Texas 48 793962 16307
## 11777 2020-10-02 Utah 49 75175 474
## 11778 2020-10-02 Vermont 50 1768 58
## 11779 2020-10-02 Virgin Islands 78 1326 20
## 11780 2020-10-02 Virginia 51 149687 3250
## 11781 2020-10-02 Washington 53 92727 2239
## 11782 2020-10-02 West Virginia 54 16307 355
## 11783 2020-10-02 Wisconsin 55 134996 1364
## 11784 2020-10-02 Wyoming 56 6214 53
## 11785 2020-10-03 Alabama 1 158380 2558
## 11786 2020-10-03 Alaska 2 9111 54
## 11787 2020-10-03 Arizona 4 220403 5705
## 11788 2020-10-03 Arkansas 5 86525 1407
## 11789 2020-10-03 California 6 831495 16122
## 11790 2020-10-03 Colorado 8 72929 2071
## 11791 2020-10-03 Connecticut 9 58297 4513
## 11792 2020-10-03 Delaware 10 21125 645
## 11793 2020-10-03 District of Columbia 11 15473 629
## 11794 2020-10-03 Florida 12 714583 14627
## 11795 2020-10-03 Georgia 13 305941 6972
## 11796 2020-10-03 Guam 66 3668 52
## 11797 2020-10-03 Hawaii 15 12887 152
## 11798 2020-10-03 Idaho 16 43702 480
## 11799 2020-10-03 Illinois 17 303807 9033
## 11800 2020-10-03 Indiana 18 126414 3669
## 11801 2020-10-03 Iowa 19 92302 1381
## 11802 2020-10-03 Kansas 20 62446 698
## 11803 2020-10-03 Kentucky 21 75576 1239
## 11804 2020-10-03 Louisiana 22 168826 5545
## 11805 2020-10-03 Maine 23 5486 142
## 11806 2020-10-03 Maryland 24 127194 3957
## 11807 2020-10-03 Massachusetts 25 134303 9507
## 11808 2020-10-03 Michigan 26 141236 7125
## 11809 2020-10-03 Minnesota 27 102840 2126
## 11810 2020-10-03 Mississippi 28 100167 3011
## 11811 2020-10-03 Missouri 29 134826 2220
## 11812 2020-10-03 Montana 30 14490 186
## 11813 2020-10-03 Nebraska 31 47403 503
## 11814 2020-10-03 Nevada 32 81829 1623
## 11815 2020-10-03 New Hampshire 33 8597 442
## 11816 2020-10-03 New Jersey 34 209363 16135
## 11817 2020-10-03 New Mexico 35 30296 890
## 11818 2020-10-03 New York 36 468081 32794
## 11819 2020-10-03 North Carolina 37 217049 3647
## 11820 2020-10-03 North Dakota 38 23137 274
## 11821 2020-10-03 Northern Mariana Islands 69 70 2
## 11822 2020-10-03 Ohio 39 157966 4925
## 11823 2020-10-03 Oklahoma 40 90748 1051
## 11824 2020-10-03 Oregon 41 34512 572
## 11825 2020-10-03 Pennsylvania 42 166270 8271
## 11826 2020-10-03 Puerto Rico 72 50375 681
## 11827 2020-10-03 Rhode Island 44 25076 1118
## 11828 2020-10-03 South Carolina 45 150891 3442
## 11829 2020-10-03 South Dakota 46 23986 248
## 11830 2020-10-03 Tennessee 47 196870 2534
## 11831 2020-10-03 Texas 48 799411 16440
## 11832 2020-10-03 Utah 49 76231 476
## 11833 2020-10-03 Vermont 50 1778 58
## 11834 2020-10-03 Virgin Islands 78 1327 20
## 11835 2020-10-03 Virginia 51 150803 3270
## 11836 2020-10-03 Washington 53 93160 2238
## 11837 2020-10-03 West Virginia 54 16468 357
## 11838 2020-10-03 Wisconsin 55 138018 1383
## 11839 2020-10-03 Wyoming 56 6365 53
## 11840 2020-10-04 Alabama 1 159169 2558
## 11841 2020-10-04 Alaska 2 9300 54
## 11842 2020-10-04 Arizona 4 220757 5706
## 11843 2020-10-04 Arkansas 5 87013 1425
## 11844 2020-10-04 California 6 834636 16150
## 11845 2020-10-04 Colorado 8 73389 2077
## 11846 2020-10-04 Connecticut 9 58297 4513
## 11847 2020-10-04 Delaware 10 21243 645
## 11848 2020-10-04 District of Columbia 11 15519 631
## 11849 2020-10-04 Florida 12 716451 14670
## 11850 2020-10-04 Georgia 13 306778 6999
## 11851 2020-10-04 Guam 66 3586 53
## 11852 2020-10-04 Hawaii 15 12957 155
## 11853 2020-10-04 Idaho 16 43964 482
## 11854 2020-10-04 Illinois 17 305218 9050
## 11855 2020-10-04 Indiana 18 127501 3674
## 11856 2020-10-04 Iowa 19 92744 1387
## 11857 2020-10-04 Kansas 20 62479 698
## 11858 2020-10-04 Kentucky 21 76086 1242
## 11859 2020-10-04 Louisiana 22 169719 5577
## 11860 2020-10-04 Maine 23 5519 142
## 11861 2020-10-04 Maryland 24 127785 3958
## 11862 2020-10-04 Massachusetts 25 134947 9510
## 11863 2020-10-04 Michigan 26 141287 7125
## 11864 2020-10-04 Minnesota 27 103879 2133
## 11865 2020-10-04 Mississippi 28 100488 3013
## 11866 2020-10-04 Missouri 29 135691 2220
## 11867 2020-10-04 Montana 30 14738 187
## 11868 2020-10-04 Nebraska 31 47807 504
## 11869 2020-10-04 Nevada 32 82134 1623
## 11870 2020-10-04 New Hampshire 33 8645 443
## 11871 2020-10-04 New Jersey 34 209989 16136
## 11872 2020-10-04 New Mexico 35 30477 892
## 11873 2020-10-04 New York 36 469307 32813
## 11874 2020-10-04 North Carolina 37 217641 3653
## 11875 2020-10-04 North Dakota 38 23553 277
## 11876 2020-10-04 Northern Mariana Islands 69 73 2
## 11877 2020-10-04 Ohio 39 158907 4925
## 11878 2020-10-04 Oklahoma 40 91317 1052
## 11879 2020-10-04 Oregon 41 34771 573
## 11880 2020-10-04 Pennsylvania 42 168161 8287
## 11881 2020-10-04 Puerto Rico 72 50675 686
## 11882 2020-10-04 Rhode Island 44 25076 1118
## 11883 2020-10-04 South Carolina 45 151582 3453
## 11884 2020-10-04 South Dakota 46 24418 248
## 11885 2020-10-04 Tennessee 47 198262 2550
## 11886 2020-10-04 Texas 48 802440 16471
## 11887 2020-10-04 Utah 49 77618 478
## 11888 2020-10-04 Vermont 50 1785 58
## 11889 2020-10-04 Virgin Islands 78 1327 20
## 11890 2020-10-04 Virginia 51 151870 3273
## 11891 2020-10-04 Washington 53 93527 2238
## 11892 2020-10-04 West Virginia 54 16628 358
## 11893 2020-10-04 Wisconsin 55 139941 1388
## 11894 2020-10-04 Wyoming 56 6504 53
## 11895 2020-10-05 Alabama 1 159713 2559
## 11896 2020-10-05 Alaska 2 9511 54
## 11897 2020-10-05 Arizona 4 221091 5707
## 11898 2020-10-05 Arkansas 5 87430 1447
## 11899 2020-10-05 California 6 837722 16179
## 11900 2020-10-05 Colorado 8 74029 2085
## 11901 2020-10-05 Connecticut 9 59120 4517
## 11902 2020-10-05 Delaware 10 21363 645
## 11903 2020-10-05 District of Columbia 11 15547 631
## 11904 2020-10-05 Florida 12 717866 14711
## 11905 2020-10-05 Georgia 13 328127 7028
## 11906 2020-10-05 Guam 66 3722 56
## 11907 2020-10-05 Hawaii 15 13007 156
## 11908 2020-10-05 Idaho 16 44832 487
## 11909 2020-10-05 Illinois 17 307428 9071
## 11910 2020-10-05 Indiana 18 128285 3681
## 11911 2020-10-05 Iowa 19 93261 1399
## 11912 2020-10-05 Kansas 20 63817 706
## 11913 2020-10-05 Kentucky 21 76787 1248
## 11914 2020-10-05 Louisiana 22 169937 5586
## 11915 2020-10-05 Maine 23 5545 142
## 11916 2020-10-05 Maryland 24 128277 3961
## 11917 2020-10-05 Massachusetts 25 135462 9530
## 11918 2020-10-05 Michigan 26 142757 7141
## 11919 2020-10-05 Minnesota 27 104852 2136
## 11920 2020-10-05 Mississippi 28 100703 3013
## 11921 2020-10-05 Missouri 29 137297 2229
## 11922 2020-10-05 Montana 30 15127 190
## 11923 2020-10-05 Nebraska 31 48259 509
## 11924 2020-10-05 Nevada 32 82544 1624
## 11925 2020-10-05 New Hampshire 33 8680 444
## 11926 2020-10-05 New Jersey 34 210500 16138
## 11927 2020-10-05 New Mexico 35 30632 894
## 11928 2020-10-05 New York 36 470244 32827
## 11929 2020-10-05 North Carolina 37 220045 3656
## 11930 2020-10-05 North Dakota 38 23865 280
## 11931 2020-10-05 Northern Mariana Islands 69 75 2
## 11932 2020-10-05 Ohio 39 159964 4931
## 11933 2020-10-05 Oklahoma 40 91982 1055
## 11934 2020-10-05 Oregon 41 35056 574
## 11935 2020-10-05 Pennsylvania 42 169126 8300
## 11936 2020-10-05 Puerto Rico 72 51305 695
## 11937 2020-10-05 Rhode Island 44 25419 1121
## 11938 2020-10-05 South Carolina 45 152159 3456
## 11939 2020-10-05 South Dakota 46 24598 248
## 11940 2020-10-05 Tennessee 47 200603 2570
## 11941 2020-10-05 Texas 48 806535 16519
## 11942 2020-10-05 Utah 49 78733 483
## 11943 2020-10-05 Vermont 50 1817 58
## 11944 2020-10-05 Virgin Islands 78 1322 20
## 11945 2020-10-05 Virginia 51 152557 3276
## 11946 2020-10-05 Washington 53 94202 2253
## 11947 2020-10-05 West Virginia 54 16742 361
## 11948 2020-10-05 Wisconsin 55 141780 1393
## 11949 2020-10-05 Wyoming 56 6629 53
## 11950 2020-10-06 Alabama 1 160477 2580
## 11951 2020-10-06 Alaska 2 9656 54
## 11952 2020-10-06 Arizona 4 221937 5713
## 11953 2020-10-06 Arkansas 5 88071 1469
## 11954 2020-10-06 California 6 840324 16251
## 11955 2020-10-06 Colorado 8 74535 2094
## 11956 2020-10-06 Connecticut 9 59241 4521
## 11957 2020-10-06 Delaware 10 21466 646
## 11958 2020-10-06 District of Columbia 11 15652 631
## 11959 2020-10-06 Florida 12 720117 14766
## 11960 2020-10-06 Georgia 13 329101 7062
## 11961 2020-10-06 Guam 66 3787 56
## 11962 2020-10-06 Hawaii 15 13090 159
## 11963 2020-10-06 Idaho 16 45487 494
## 11964 2020-10-06 Illinois 17 308990 9100
## 11965 2020-10-06 Indiana 18 129281 3711
## 11966 2020-10-06 Iowa 19 93909 1414
## 11967 2020-10-06 Kansas 20 64077 706
## 11968 2020-10-06 Kentucky 21 77741 1255
## 11969 2020-10-06 Louisiana 22 170469 5592
## 11970 2020-10-06 Maine 23 5565 142
## 11971 2020-10-06 Maryland 24 128691 3967
## 11972 2020-10-06 Massachusetts 25 135957 9538
## 11973 2020-10-06 Michigan 26 143901 7163
## 11974 2020-10-06 Minnesota 27 105793 2140
## 11975 2020-10-06 Mississippi 28 101678 3027
## 11976 2020-10-06 Missouri 29 139172 2258
## 11977 2020-10-06 Montana 30 15633 192
## 11978 2020-10-06 Nebraska 31 48757 511
## 11979 2020-10-06 Nevada 32 83036 1630
## 11980 2020-10-06 New Hampshire 33 8731 446
## 11981 2020-10-06 New Jersey 34 211129 16147
## 11982 2020-10-06 New Mexico 35 30947 894
## 11983 2020-10-06 New York 36 471638 32836
## 11984 2020-10-06 North Carolina 37 221438 3691
## 11985 2020-10-06 North Dakota 38 24368 284
## 11986 2020-10-06 Northern Mariana Islands 69 75 2
## 11987 2020-10-06 Ohio 39 161299 4947
## 11988 2020-10-06 Oklahoma 40 93346 1066
## 11989 2020-10-06 Oregon 41 35347 581
## 11990 2020-10-06 Pennsylvania 42 170255 8318
## 11991 2020-10-06 Puerto Rico 72 51737 696
## 11992 2020-10-06 Rhode Island 44 25596 1125
## 11993 2020-10-06 South Carolina 45 152970 3471
## 11994 2020-10-06 South Dakota 46 24876 248
## 11995 2020-10-06 Tennessee 47 202257 2594
## 11996 2020-10-06 Texas 48 811191 16622
## 11997 2020-10-06 Utah 49 79449 489
## 11998 2020-10-06 Vermont 50 1821 58
## 11999 2020-10-06 Virgin Islands 78 1321 20
## 12000 2020-10-06 Virginia 51 153182 3291
## 12001 2020-10-06 Washington 53 94694 2261
## 12002 2020-10-06 West Virginia 54 16936 364
## 12003 2020-10-06 Wisconsin 55 143886 1410
## 12004 2020-10-06 Wyoming 56 6770 53
## 12005 2020-10-07 Alabama 1 161418 2601
## 12006 2020-10-07 Alaska 2 9784 55
## 12007 2020-10-07 Arizona 4 222558 5733
## 12008 2020-10-07 Arkansas 5 88880 1482
## 12009 2020-10-07 California 6 843734 16358
## 12010 2020-10-07 Colorado 8 75410 2097
## 12011 2020-10-07 Connecticut 9 59364 4522
## 12012 2020-10-07 Delaware 10 21550 649
## 12013 2020-10-07 District of Columbia 11 15697 632
## 12014 2020-10-07 Florida 12 722699 14903
## 12015 2020-10-07 Georgia 13 330769 7089
## 12016 2020-10-07 Guam 66 3837 58
## 12017 2020-10-07 Hawaii 15 13196 162
## 12018 2020-10-07 Idaho 16 46233 502
## 12019 2020-10-07 Illinois 17 311614 9138
## 12020 2020-10-07 Indiana 18 130569 3727
## 12021 2020-10-07 Iowa 19 95205 1419
## 12022 2020-10-07 Kansas 20 65131 725
## 12023 2020-10-07 Kentucky 21 78669 1261
## 12024 2020-10-07 Louisiana 22 172625 5604
## 12025 2020-10-07 Maine 23 5604 142
## 12026 2020-10-07 Maryland 24 129158 3973
## 12027 2020-10-07 Massachusetts 25 136492 9557
## 12028 2020-10-07 Michigan 26 145131 7171
## 12029 2020-10-07 Minnesota 27 106704 2154
## 12030 2020-10-07 Mississippi 28 102241 3051
## 12031 2020-10-07 Missouri 29 141262 2334
## 12032 2020-10-07 Montana 30 16194 193
## 12033 2020-10-07 Nebraska 31 49396 516
## 12034 2020-10-07 Nevada 32 83500 1639
## 12035 2020-10-07 New Hampshire 33 8800 448
## 12036 2020-10-07 New Jersey 34 211638 16152
## 12037 2020-10-07 New Mexico 35 31372 896
## 12038 2020-10-07 New York 36 472994 32850
## 12039 2020-10-07 North Carolina 37 223349 3716
## 12040 2020-10-07 North Dakota 38 24861 308
## 12041 2020-10-07 Northern Mariana Islands 69 75 2
## 12042 2020-10-07 Ohio 39 162723 4970
## 12043 2020-10-07 Oklahoma 40 94352 1075
## 12044 2020-10-07 Oregon 41 35646 585
## 12045 2020-10-07 Pennsylvania 42 171550 8347
## 12046 2020-10-07 Puerto Rico 72 51768 705
## 12047 2020-10-07 Rhode Island 44 25776 1126
## 12048 2020-10-07 South Carolina 45 153705 3502
## 12049 2020-10-07 South Dakota 46 25906 258
## 12050 2020-10-07 Tennessee 47 204286 2615
## 12051 2020-10-07 Texas 48 817166 16747
## 12052 2020-10-07 Utah 49 80522 499
## 12053 2020-10-07 Vermont 50 1827 58
## 12054 2020-10-07 Virgin Islands 78 1322 20
## 12055 2020-10-07 Virginia 51 153691 3303
## 12056 2020-10-07 Washington 53 95500 2274
## 12057 2020-10-07 West Virginia 54 17139 369
## 12058 2020-10-07 Wisconsin 55 146376 1427
## 12059 2020-10-07 Wyoming 56 6899 53
## 12060 2020-10-08 Alabama 1 161975 2637
## 12061 2020-10-08 Alaska 2 9919 56
## 12062 2020-10-08 Arizona 4 223407 5743
## 12063 2020-10-08 Arkansas 5 90145 1503
## 12064 2020-10-08 California 6 847385 16425
## 12065 2020-10-08 Colorado 8 76186 2107
## 12066 2020-10-08 Connecticut 9 59748 4527
## 12067 2020-10-08 Delaware 10 21682 651
## 12068 2020-10-08 District of Columbia 11 15765 634
## 12069 2020-10-08 Florida 12 726005 15067
## 12070 2020-10-08 Georgia 13 332142 7125
## 12071 2020-10-08 Guam 66 3903 59
## 12072 2020-10-08 Hawaii 15 13297 163
## 12073 2020-10-08 Idaho 16 46848 504
## 12074 2020-10-08 Illinois 17 314725 9173
## 12075 2020-10-08 Indiana 18 132030 3742
## 12076 2020-10-08 Iowa 19 96749 1433
## 12077 2020-10-08 Kansas 20 65296 741
## 12078 2020-10-08 Kentucky 21 79550 1272
## 12079 2020-10-08 Louisiana 22 173149 5609
## 12080 2020-10-08 Maine 23 5639 142
## 12081 2020-10-08 Maryland 24 129919 3979
## 12082 2020-10-08 Massachusetts 25 136936 9565
## 12083 2020-10-08 Michigan 26 146548 7194
## 12084 2020-10-08 Minnesota 27 107975 2160
## 12085 2020-10-08 Mississippi 28 102819 3074
## 12086 2020-10-08 Missouri 29 142732 2360
## 12087 2020-10-08 Montana 30 16766 197
## 12088 2020-10-08 Nebraska 31 50059 518
## 12089 2020-10-08 Nevada 32 83971 1650
## 12090 2020-10-08 New Hampshire 33 8878 448
## 12091 2020-10-08 New Jersey 34 212936 16161
## 12092 2020-10-08 New Mexico 35 31756 899
## 12093 2020-10-08 New York 36 474829 32859
## 12094 2020-10-08 North Carolina 37 225738 3744
## 12095 2020-10-08 North Dakota 38 25388 314
## 12096 2020-10-08 Northern Mariana Islands 69 75 2
## 12097 2020-10-08 Ohio 39 164262 4983
## 12098 2020-10-08 Oklahoma 40 95564 1085
## 12099 2020-10-08 Oregon 41 36121 596
## 12100 2020-10-08 Pennsylvania 42 172971 8372
## 12101 2020-10-08 Puerto Rico 72 52294 715
## 12102 2020-10-08 Rhode Island 44 26045 1127
## 12103 2020-10-08 South Carolina 45 154755 3514
## 12104 2020-10-08 South Dakota 46 26441 272
## 12105 2020-10-08 Tennessee 47 206265 2676
## 12106 2020-10-08 Texas 48 821732 16853
## 12107 2020-10-08 Utah 49 81975 504
## 12108 2020-10-08 Vermont 50 1838 58
## 12109 2020-10-08 Virgin Islands 78 1324 20
## 12110 2020-10-08 Virginia 51 155535 3328
## 12111 2020-10-08 Washington 53 96227 2280
## 12112 2020-10-08 West Virginia 54 17325 370
## 12113 2020-10-08 Wisconsin 55 149613 1436
## 12114 2020-10-08 Wyoming 56 7092 54
## 12115 2020-10-09 Alabama 1 163465 2653
## 12116 2020-10-09 Alaska 2 10099 56
## 12117 2020-10-09 Arizona 4 224101 5746
## 12118 2020-10-09 Arkansas 5 91312 1530
## 12119 2020-10-09 California 6 851229 16502
## 12120 2020-10-09 Colorado 8 77068 2115
## 12121 2020-10-09 Connecticut 9 60038 4530
## 12122 2020-10-09 Delaware 10 21827 651
## 12123 2020-10-09 District of Columbia 11 15843 634
## 12124 2020-10-09 Florida 12 728913 15185
## 12125 2020-10-09 Georgia 13 333934 7178
## 12126 2020-10-09 Guam 66 3958 59
## 12127 2020-10-09 Hawaii 15 13461 165
## 12128 2020-10-09 Idaho 16 47674 506
## 12129 2020-10-09 Illinois 17 317501 9207
## 12130 2020-10-09 Indiana 18 133864 3761
## 12131 2020-10-09 Iowa 19 98023 1454
## 12132 2020-10-09 Kansas 20 67086 765
## 12133 2020-10-09 Kentucky 21 80633 1283
## 12134 2020-10-09 Louisiana 22 173406 5635
## 12135 2020-10-09 Maine 23 5666 143
## 12136 2020-10-09 Maryland 24 130652 3990
## 12137 2020-10-09 Massachusetts 25 137701 9577
## 12138 2020-10-09 Michigan 26 147880 7202
## 12139 2020-10-09 Minnesota 27 109365 2174
## 12140 2020-10-09 Mississippi 28 103681 3080
## 12141 2020-10-09 Missouri 29 145034 2463
## 12142 2020-10-09 Montana 30 17478 206
## 12143 2020-10-09 Nebraska 31 50168 522
## 12144 2020-10-09 Nevada 32 84785 1658
## 12145 2020-10-09 New Hampshire 33 8970 450
## 12146 2020-10-09 New Jersey 34 213801 16164
## 12147 2020-10-09 New Mexico 35 32241 902
## 12148 2020-10-09 New York 36 476422 32867
## 12149 2020-10-09 North Carolina 37 227756 3768
## 12150 2020-10-09 North Dakota 38 26044 325
## 12151 2020-10-09 Northern Mariana Islands 69 75 2
## 12152 2020-10-09 Ohio 39 166102 4994
## 12153 2020-10-09 Oklahoma 40 97088 1091
## 12154 2020-10-09 Oregon 41 36538 600
## 12155 2020-10-09 Pennsylvania 42 174352 8387
## 12156 2020-10-09 Puerto Rico 72 52892 720
## 12157 2020-10-09 Rhode Island 44 26294 1130
## 12158 2020-10-09 South Carolina 45 155676 3530
## 12159 2020-10-09 South Dakota 46 27215 277
## 12160 2020-10-09 Tennessee 47 207823 2702
## 12161 2020-10-09 Texas 48 826241 16955
## 12162 2020-10-09 Utah 49 83307 508
## 12163 2020-10-09 Vermont 50 1846 58
## 12164 2020-10-09 Virgin Islands 78 1324 20
## 12165 2020-10-09 Virginia 51 156649 3344
## 12166 2020-10-09 Washington 53 96837 2288
## 12167 2020-10-09 West Virginia 54 17707 376
## 12168 2020-10-09 Wisconsin 55 152831 1453
## 12169 2020-10-09 Wyoming 56 7335 54
## 12170 2020-10-10 Alabama 1 164526 2664
## 12171 2020-10-10 Alaska 2 10350 56
## 12172 2020-10-10 Arizona 4 224985 5759
## 12173 2020-10-10 Arkansas 5 92220 1552
## 12174 2020-10-10 California 6 854303 16568
## 12175 2020-10-10 Colorado 8 78047 2121
## 12176 2020-10-10 Connecticut 9 60038 4530
## 12177 2020-10-10 Delaware 10 21998 653
## 12178 2020-10-10 District of Columbia 11 15918 636
## 12179 2020-10-10 Florida 12 728913 15185
## 12180 2020-10-10 Georgia 13 335351 7223
## 12181 2020-10-10 Guam 66 4025 60
## 12182 2020-10-10 Hawaii 15 13532 167
## 12183 2020-10-10 Idaho 16 47927 508
## 12184 2020-10-10 Illinois 17 320283 9235
## 12185 2020-10-10 Indiana 18 135789 3782
## 12186 2020-10-10 Iowa 19 99099 1460
## 12187 2020-10-10 Kansas 20 67193 768
## 12188 2020-10-10 Kentucky 21 81630 1293
## 12189 2020-10-10 Louisiana 22 173406 5635
## 12190 2020-10-10 Maine 23 5696 143
## 12191 2020-10-10 Maryland 24 131169 3995
## 12192 2020-10-10 Massachusetts 25 138340 9587
## 12193 2020-10-10 Michigan 26 149406 7221
## 12194 2020-10-10 Minnesota 27 110881 2184
## 12195 2020-10-10 Mississippi 28 104638 3096
## 12196 2020-10-10 Missouri 29 148199 2483
## 12197 2020-10-10 Montana 30 18118 209
## 12198 2020-10-10 Nebraska 31 51887 525
## 12199 2020-10-10 Nevada 32 85463 1659
## 12200 2020-10-10 New Hampshire 33 9092 455
## 12201 2020-10-10 New Jersey 34 214665 16171
## 12202 2020-10-10 New Mexico 35 32722 907
## 12203 2020-10-10 New York 36 477870 32875
## 12204 2020-10-10 North Carolina 37 229959 3786
## 12205 2020-10-10 North Dakota 38 26632 340
## 12206 2020-10-10 Northern Mariana Islands 69 77 2
## 12207 2020-10-10 Ohio 39 167458 4997
## 12208 2020-10-10 Oklahoma 40 98621 1095
## 12209 2020-10-10 Oregon 41 36925 600
## 12210 2020-10-10 Pennsylvania 42 175804 8421
## 12211 2020-10-10 Puerto Rico 72 53364 728
## 12212 2020-10-10 Rhode Island 44 26294 1130
## 12213 2020-10-10 South Carolina 45 156621 3551
## 12214 2020-10-10 South Dakota 46 27947 286
## 12215 2020-10-10 Tennessee 47 209593 2729
## 12216 2020-10-10 Texas 48 829758 17019
## 12217 2020-10-10 Utah 49 84697 512
## 12218 2020-10-10 Vermont 50 1857 58
## 12219 2020-10-10 Virgin Islands 78 1325 20
## 12220 2020-10-10 Virginia 51 157905 3354
## 12221 2020-10-10 Washington 53 97223 2289
## 12222 2020-10-10 West Virginia 54 17913 381
## 12223 2020-10-10 Wisconsin 55 155752 1470
## 12224 2020-10-10 Wyoming 56 7455 54
## 12225 2020-10-11 Alabama 1 165342 2664
## 12226 2020-10-11 Alaska 2 10608 56
## 12227 2020-10-11 Arizona 4 225575 5759
## 12228 2020-10-11 Arkansas 5 92833 1569
## 12229 2020-10-11 California 6 857077 16581
## 12230 2020-10-11 Colorado 8 78752 2134
## 12231 2020-10-11 Connecticut 9 60038 4530
## 12232 2020-10-11 Delaware 10 22130 654
## 12233 2020-10-11 District of Columbia 11 15984 637
## 12234 2020-10-11 Florida 12 734483 15363
## 12235 2020-10-11 Georgia 13 336586 7246
## 12236 2020-10-11 Guam 66 4047 61
## 12237 2020-10-11 Hawaii 15 13633 168
## 12238 2020-10-11 Idaho 16 48155 508
## 12239 2020-10-11 Illinois 17 322985 9245
## 12240 2020-10-11 Indiana 18 137359 3789
## 12241 2020-10-11 Iowa 19 99941 1462
## 12242 2020-10-11 Kansas 20 67231 769
## 12243 2020-10-11 Kentucky 21 82358 1295
## 12244 2020-10-11 Louisiana 22 174587 5655
## 12245 2020-10-11 Maine 23 5723 143
## 12246 2020-10-11 Maryland 24 131853 3999
## 12247 2020-10-11 Massachusetts 25 138903 9604
## 12248 2020-10-11 Michigan 26 149448 7221
## 12249 2020-10-11 Minnesota 27 112321 2194
## 12250 2020-10-11 Mississippi 28 104932 3101
## 12251 2020-10-11 Missouri 29 148481 2483
## 12252 2020-10-11 Montana 30 18733 210
## 12253 2020-10-11 Nebraska 31 52382 525
## 12254 2020-10-11 Nevada 32 85922 1663
## 12255 2020-10-11 New Hampshire 33 9143 456
## 12256 2020-10-11 New Jersey 34 215416 16174
## 12257 2020-10-11 New Mexico 35 32983 911
## 12258 2020-10-11 New York 36 479013 32879
## 12259 2020-10-11 North Carolina 37 231564 3791
## 12260 2020-10-11 North Dakota 38 27269 343
## 12261 2020-10-11 Northern Mariana Islands 69 77 2
## 12262 2020-10-11 Ohio 39 168749 4999
## 12263 2020-10-11 Oklahoma 40 99387 1098
## 12264 2020-10-11 Oregon 41 37263 600
## 12265 2020-10-11 Pennsylvania 42 176820 8426
## 12266 2020-10-11 Puerto Rico 72 53671 730
## 12267 2020-10-11 Rhode Island 44 26294 1130
## 12268 2020-10-11 South Carolina 45 157406 3552
## 12269 2020-10-11 South Dakota 46 28564 286
## 12270 2020-10-11 Tennessee 47 211426 2738
## 12271 2020-10-11 Texas 48 832750 17047
## 12272 2020-10-11 Utah 49 85844 518
## 12273 2020-10-11 Vermont 50 1868 58
## 12274 2020-10-11 Virgin Islands 78 1325 20
## 12275 2020-10-11 Virginia 51 158716 3358
## 12276 2020-10-11 Washington 53 97527 2289
## 12277 2020-10-11 West Virginia 54 18128 382
## 12278 2020-10-11 Wisconsin 55 158426 1477
## 12279 2020-10-11 Wyoming 56 7611 54
## 12280 2020-10-12 Alabama 1 166076 2665
## 12281 2020-10-12 Alaska 2 10805 56
## 12282 2020-10-12 Arizona 4 226072 5759
## 12283 2020-10-12 Arkansas 5 93487 1586
## 12284 2020-10-12 California 6 859960 16594
## 12285 2020-10-12 Colorado 8 79499 2144
## 12286 2020-10-12 Connecticut 9 61377 4532
## 12287 2020-10-12 Delaware 10 22289 656
## 12288 2020-10-12 District of Columbia 11 16022 637
## 12289 2020-10-12 Florida 12 736016 15411
## 12290 2020-10-12 Georgia 13 339577 7259
## 12291 2020-10-12 Guam 66 4139 61
## 12292 2020-10-12 Hawaii 15 13675 168
## 12293 2020-10-12 Idaho 16 48663 511
## 12294 2020-10-12 Illinois 17 325755 9258
## 12295 2020-10-12 Indiana 18 138933 3795
## 12296 2020-10-12 Iowa 19 100451 1481
## 12297 2020-10-12 Kansas 20 69158 774
## 12298 2020-10-12 Kentucky 21 83074 1300
## 12299 2020-10-12 Louisiana 22 174647 5669
## 12300 2020-10-12 Maine 23 5752 143
## 12301 2020-10-12 Maryland 24 132357 4003
## 12302 2020-10-12 Massachusetts 25 139663 9617
## 12303 2020-10-12 Michigan 26 151284 7227
## 12304 2020-10-12 Minnesota 27 113492 2197
## 12305 2020-10-12 Mississippi 28 105228 3101
## 12306 2020-10-12 Missouri 29 149460 2484
## 12307 2020-10-12 Montana 30 19205 212
## 12308 2020-10-12 Nebraska 31 52839 529
## 12309 2020-10-12 Nevada 32 86433 1670
## 12310 2020-10-12 New Hampshire 33 9208 456
## 12311 2020-10-12 New Jersey 34 215885 16175
## 12312 2020-10-12 New Mexico 35 33362 915
## 12313 2020-10-12 New York 36 480045 32896
## 12314 2020-10-12 North Carolina 37 233059 3799
## 12315 2020-10-12 North Dakota 38 27742 350
## 12316 2020-10-12 Northern Mariana Islands 69 77 2
## 12317 2020-10-12 Ohio 39 170179 5005
## 12318 2020-10-12 Oklahoma 40 100184 1104
## 12319 2020-10-12 Oregon 41 37472 600
## 12320 2020-10-12 Pennsylvania 42 177844 8444
## 12321 2020-10-12 Puerto Rico 72 54234 735
## 12322 2020-10-12 Rhode Island 44 26294 1130
## 12323 2020-10-12 South Carolina 45 158055 3559
## 12324 2020-10-12 South Dakota 46 28925 288
## 12325 2020-10-12 Tennessee 47 214245 2745
## 12326 2020-10-12 Texas 48 836807 17073
## 12327 2020-10-12 Utah 49 86879 524
## 12328 2020-10-12 Vermont 50 1876 58
## 12329 2020-10-12 Virgin Islands 78 1325 20
## 12330 2020-10-12 Virginia 51 159570 3361
## 12331 2020-10-12 Washington 53 98265 2292
## 12332 2020-10-12 West Virginia 54 18281 385
## 12333 2020-10-12 Wisconsin 55 160655 1488
## 12334 2020-10-12 Wyoming 56 7802 54
## 12335 2020-10-13 Alabama 1 167193 2665
## 12336 2020-10-13 Alaska 2 10960 56
## 12337 2020-10-13 Arizona 4 226749 5767
## 12338 2020-10-13 Arkansas 5 94167 1611
## 12339 2020-10-13 California 6 863614 16650
## 12340 2020-10-13 Colorado 8 80414 2181
## 12341 2020-10-13 Connecticut 9 61697 4533
## 12342 2020-10-13 Delaware 10 22394 659
## 12343 2020-10-13 District of Columbia 11 16068 637
## 12344 2020-10-13 Florida 12 738741 15530
## 12345 2020-10-13 Georgia 13 340758 7282
## 12346 2020-10-13 Guam 66 4235 62
## 12347 2020-10-13 Hawaii 15 13736 172
## 12348 2020-10-13 Idaho 16 49987 514
## 12349 2020-10-13 Illinois 17 329160 9288
## 12350 2020-10-13 Indiana 18 140505 3822
## 12351 2020-10-13 Iowa 19 101531 1491
## 12352 2020-10-13 Kansas 20 69392 786
## 12353 2020-10-13 Kentucky 21 83967 1318
## 12354 2020-10-13 Louisiana 22 175329 5679
## 12355 2020-10-13 Maine 23 5780 143
## 12356 2020-10-13 Maryland 24 132839 4012
## 12357 2020-10-13 Massachusetts 25 140412 9630
## 12358 2020-10-13 Michigan 26 152842 7257
## 12359 2020-10-13 Minnesota 27 114627 2204
## 12360 2020-10-13 Mississippi 28 105941 3115
## 12361 2020-10-13 Missouri 29 150496 2495
## 12362 2020-10-13 Montana 30 19682 217
## 12363 2020-10-13 Nebraska 31 53543 533
## 12364 2020-10-13 Nevada 32 86970 1677
## 12365 2020-10-13 New Hampshire 33 9279 456
## 12366 2020-10-13 New Jersey 34 216873 16182
## 12367 2020-10-13 New Mexico 35 33713 918
## 12368 2020-10-13 New York 36 481436 32905
## 12369 2020-10-13 North Carolina 37 234842 3849
## 12370 2020-10-13 North Dakota 38 28250 362
## 12371 2020-10-13 Northern Mariana Islands 69 77 2
## 12372 2020-10-13 Ohio 39 171626 5017
## 12373 2020-10-13 Oklahoma 40 101493 1119
## 12374 2020-10-13 Oregon 41 37788 605
## 12375 2020-10-13 Pennsylvania 42 179673 8458
## 12376 2020-10-13 Puerto Rico 72 54540 738
## 12377 2020-10-13 Rhode Island 44 26960 1139
## 12378 2020-10-13 South Carolina 45 158883 3576
## 12379 2020-10-13 South Dakota 46 29339 288
## 12380 2020-10-13 Tennessee 47 215423 2768
## 12381 2020-10-13 Texas 48 842316 17165
## 12382 2020-10-13 Utah 49 87825 524
## 12383 2020-10-13 Vermont 50 1886 58
## 12384 2020-10-13 Virgin Islands 78 1328 20
## 12385 2020-10-13 Virginia 51 160805 3372
## 12386 2020-10-13 Washington 53 99311 2311
## 12387 2020-10-13 West Virginia 54 18555 387
## 12388 2020-10-13 Wisconsin 55 164137 1521
## 12389 2020-10-13 Wyoming 56 7964 57
## 12390 2020-10-14 Alabama 1 167977 2706
## 12391 2020-10-14 Alaska 2 11103 60
## 12392 2020-10-14 Arizona 4 227660 5772
## 12393 2020-10-14 Arkansas 5 95246 1634
## 12394 2020-10-14 California 6 867094 16752
## 12395 2020-10-14 Colorado 8 81205 2186
## 12396 2020-10-14 Connecticut 9 61861 4537
## 12397 2020-10-14 Delaware 10 22465 660
## 12398 2020-10-14 District of Columbia 11 16132 638
## 12399 2020-10-14 Florida 12 741624 15594
## 12400 2020-10-14 Georgia 13 342302 7298
## 12401 2020-10-14 Guam 66 4310 62
## 12402 2020-10-14 Hawaii 15 13834 182
## 12403 2020-10-14 Idaho 16 50534 520
## 12404 2020-10-14 Illinois 17 332124 9335
## 12405 2020-10-14 Indiana 18 141670 3836
## 12406 2020-10-14 Iowa 19 102905 1505
## 12407 2020-10-14 Kansas 20 70665 838
## 12408 2020-10-14 Kentucky 21 85278 1325
## 12409 2020-10-14 Louisiana 22 176209 5695
## 12410 2020-10-14 Maine 23 5816 143
## 12411 2020-10-14 Maryland 24 133413 4022
## 12412 2020-10-14 Massachusetts 25 140992 9647
## 12413 2020-10-14 Michigan 26 154409 7270
## 12414 2020-10-14 Minnesota 27 115996 2233
## 12415 2020-10-14 Mississippi 28 106817 3140
## 12416 2020-10-14 Missouri 29 154213 2598
## 12417 2020-10-14 Montana 30 20321 225
## 12418 2020-10-14 Nebraska 31 54467 536
## 12419 2020-10-14 Nevada 32 87527 1694
## 12420 2020-10-14 New Hampshire 33 9349 458
## 12421 2020-10-14 New Jersey 34 217812 16191
## 12422 2020-10-14 New Mexico 35 34290 921
## 12423 2020-10-14 New York 36 482671 32916
## 12424 2020-10-14 North Carolina 37 236812 3882
## 12425 2020-10-14 North Dakota 38 28952 370
## 12426 2020-10-14 Northern Mariana Islands 69 77 2
## 12427 2020-10-14 Ohio 39 173665 5033
## 12428 2020-10-14 Oklahoma 40 102615 1132
## 12429 2020-10-14 Oregon 41 38175 609
## 12430 2020-10-14 Pennsylvania 42 180956 8481
## 12431 2020-10-14 Puerto Rico 72 55516 742
## 12432 2020-10-14 Rhode Island 44 27164 1147
## 12433 2020-10-14 South Carolina 45 159809 3593
## 12434 2020-10-14 South Dakota 46 30215 291
## 12435 2020-10-14 Tennessee 47 217140 2801
## 12436 2020-10-14 Texas 48 848168 17276
## 12437 2020-10-14 Utah 49 89018 529
## 12438 2020-10-14 Vermont 50 1889 58
## 12439 2020-10-14 Virgin Islands 78 1328 20
## 12440 2020-10-14 Virginia 51 161610 3381
## 12441 2020-10-14 Washington 53 100068 2319
## 12442 2020-10-14 West Virginia 54 18818 391
## 12443 2020-10-14 Wisconsin 55 167441 1549
## 12444 2020-10-14 Wyoming 56 8177 57
## 12445 2020-10-15 Alabama 1 169162 2756
## 12446 2020-10-15 Alaska 2 11268 61
## 12447 2020-10-15 Arizona 4 228748 5789
## 12448 2020-10-15 Arkansas 5 96524 1645
## 12449 2020-10-15 California 6 870380 16839
## 12450 2020-10-15 Colorado 8 82443 2187
## 12451 2020-10-15 Connecticut 9 62028 4540
## 12452 2020-10-15 Delaware 10 22560 661
## 12453 2020-10-15 District of Columbia 11 16166 638
## 12454 2020-10-15 Florida 12 744980 15735
## 12455 2020-10-15 Georgia 13 344093 7320
## 12456 2020-10-15 Guam 66 4396 62
## 12457 2020-10-15 Hawaii 15 13922 183
## 12458 2020-10-15 Idaho 16 51471 521
## 12459 2020-10-15 Illinois 17 336211 9392
## 12460 2020-10-15 Indiana 18 143617 3864
## 12461 2020-10-15 Iowa 19 104232 1516
## 12462 2020-10-15 Kansas 20 70815 838
## 12463 2020-10-15 Kentucky 21 86410 1341
## 12464 2020-10-15 Louisiana 22 176952 5707
## 12465 2020-10-15 Maine 23 5836 144
## 12466 2020-10-15 Maryland 24 134042 4028
## 12467 2020-10-15 Massachusetts 25 141579 9672
## 12468 2020-10-15 Michigan 26 156926 7304
## 12469 2020-10-15 Minnesota 27 117159 2252
## 12470 2020-10-15 Mississippi 28 108139 3152
## 12471 2020-10-15 Missouri 29 156142 2531
## 12472 2020-10-15 Montana 30 21043 230
## 12473 2020-10-15 Nebraska 31 55428 546
## 12474 2020-10-15 Nevada 32 88081 1700
## 12475 2020-10-15 New Hampshire 33 9426 463
## 12476 2020-10-15 New Jersey 34 218783 16197
## 12477 2020-10-15 New Mexico 35 34958 922
## 12478 2020-10-15 New York 36 484135 32935
## 12479 2020-10-15 North Carolina 37 239338 3899
## 12480 2020-10-15 North Dakota 38 29658 375
## 12481 2020-10-15 Northern Mariana Islands 69 80 2
## 12482 2020-10-15 Ohio 39 175843 5038
## 12483 2020-10-15 Oklahoma 40 103836 1143
## 12484 2020-10-15 Oregon 41 38536 613
## 12485 2020-10-15 Pennsylvania 42 182502 8496
## 12486 2020-10-15 Puerto Rico 72 56085 743
## 12487 2020-10-15 Rhode Island 44 27438 1149
## 12488 2020-10-15 South Carolina 45 161106 3607
## 12489 2020-10-15 South Dakota 46 31012 304
## 12490 2020-10-15 Tennessee 47 219355 2836
## 12491 2020-10-15 Texas 48 853977 17362
## 12492 2020-10-15 Utah 49 90488 531
## 12493 2020-10-15 Vermont 50 1903 58
## 12494 2020-10-15 Virgin Islands 78 1329 21
## 12495 2020-10-15 Virginia 51 162941 3388
## 12496 2020-10-15 Washington 53 100838 2331
## 12497 2020-10-15 West Virginia 54 19082 393
## 12498 2020-10-15 Wisconsin 55 171480 1568
## 12499 2020-10-15 Wyoming 56 8375 57
## 12500 2020-10-16 Alabama 1 170374 2786
## 12501 2020-10-16 Alaska 2 11496 62
## 12502 2020-10-16 Arizona 4 229508 5806
## 12503 2020-10-16 Arkansas 5 97539 1665
## 12504 2020-10-16 California 6 874102 16901
## 12505 2020-10-16 Colorado 8 83712 2196
## 12506 2020-10-16 Connecticut 9 62830 4542
## 12507 2020-10-16 Delaware 10 22724 662
## 12508 2020-10-16 District of Columbia 11 16255 641
## 12509 2020-10-16 Florida 12 748429 15829
## 12510 2020-10-16 Georgia 13 345879 7382
## 12511 2020-10-16 Guam 66 4507 64
## 12512 2020-10-16 Hawaii 15 14007 184
## 12513 2020-10-16 Idaho 16 52234 529
## 12514 2020-10-16 Illinois 17 341219 9447
## 12515 2020-10-16 Indiana 18 145915 3887
## 12516 2020-10-16 Iowa 19 105746 1524
## 12517 2020-10-16 Kansas 20 72509 859
## 12518 2020-10-16 Kentucky 21 87764 1349
## 12519 2020-10-16 Louisiana 22 177726 5727
## 12520 2020-10-16 Maine 23 5865 145
## 12521 2020-10-16 Maryland 24 134822 4032
## 12522 2020-10-16 Massachusetts 25 142346 9702
## 12523 2020-10-16 Michigan 26 159144 7320
## 12524 2020-10-16 Minnesota 27 119449 2265
## 12525 2020-10-16 Mississippi 28 109255 3160
## 12526 2020-10-16 Missouri 29 158764 2550
## 12527 2020-10-16 Montana 30 21674 235
## 12528 2020-10-16 Nebraska 31 56724 556
## 12529 2020-10-16 Nevada 32 88832 1707
## 12530 2020-10-16 New Hampshire 33 9514 465
## 12531 2020-10-16 New Jersey 34 219593 16202
## 12532 2020-10-16 New Mexico 35 35770 928
## 12533 2020-10-16 New York 36 485838 32944
## 12534 2020-10-16 North Carolina 37 242032 3938
## 12535 2020-10-16 North Dakota 38 30522 393
## 12536 2020-10-16 Northern Mariana Islands 69 80 2
## 12537 2020-10-16 Ohio 39 177991 5054
## 12538 2020-10-16 Oklahoma 40 105308 1154
## 12539 2020-10-16 Oregon 41 38947 620
## 12540 2020-10-16 Pennsylvania 42 184185 8524
## 12541 2020-10-16 Puerto Rico 72 56412 758
## 12542 2020-10-16 Rhode Island 44 27691 1152
## 12543 2020-10-16 South Carolina 45 162253 3615
## 12544 2020-10-16 South Dakota 46 31805 307
## 12545 2020-10-16 Tennessee 47 220099 2847
## 12546 2020-10-16 Texas 48 859567 17454
## 12547 2020-10-16 Utah 49 91966 539
## 12548 2020-10-16 Vermont 50 1915 58
## 12549 2020-10-16 Virgin Islands 78 1329 21
## 12550 2020-10-16 Virginia 51 164124 3408
## 12551 2020-10-16 Washington 53 101533 2338
## 12552 2020-10-16 West Virginia 54 19580 396
## 12553 2020-10-16 Wisconsin 55 175652 1588
## 12554 2020-10-16 Wyoming 56 8665 57
## 12555 2020-10-17 Alabama 1 171662 2788
## 12556 2020-10-17 Alaska 2 11710 63
## 12557 2020-10-17 Arizona 4 230412 5824
## 12558 2020-10-17 Arkansas 5 98422 1684
## 12559 2020-10-17 California 6 876258 16940
## 12560 2020-10-17 Colorado 8 84804 2199
## 12561 2020-10-17 Connecticut 9 62830 4542
## 12562 2020-10-17 Delaware 10 22942 664
## 12563 2020-10-17 District of Columbia 11 16334 641
## 12564 2020-10-17 Florida 12 752473 15916
## 12565 2020-10-17 Georgia 13 347468 7429
## 12566 2020-10-17 Guam 66 4507 64
## 12567 2020-10-17 Hawaii 15 14101 185
## 12568 2020-10-17 Idaho 16 52582 532
## 12569 2020-10-17 Illinois 17 344787 9474
## 12570 2020-10-17 Indiana 18 148400 3918
## 12571 2020-10-17 Iowa 19 106698 1528
## 12572 2020-10-17 Kansas 20 72616 859
## 12573 2020-10-17 Kentucky 21 88823 1363
## 12574 2020-10-17 Louisiana 22 177726 5727
## 12575 2020-10-17 Maine 23 5913 146
## 12576 2020-10-17 Maryland 24 135463 4036
## 12577 2020-10-17 Massachusetts 25 142930 9723
## 12578 2020-10-17 Michigan 26 159259 7323
## 12579 2020-10-17 Minnesota 27 121143 2270
## 12580 2020-10-17 Mississippi 28 110006 3171
## 12581 2020-10-17 Missouri 29 160654 2645
## 12582 2020-10-17 Montana 30 22284 240
## 12583 2020-10-17 Nebraska 31 57334 557
## 12584 2020-10-17 Nevada 32 89848 1709
## 12585 2020-10-17 New Hampshire 33 9625 466
## 12586 2020-10-17 New Jersey 34 220527 16204
## 12587 2020-10-17 New Mexico 35 36343 929
## 12588 2020-10-17 New York 36 487626 32959
## 12589 2020-10-17 North Carolina 37 244020 3955
## 12590 2020-10-17 North Dakota 38 31266 404
## 12591 2020-10-17 Northern Mariana Islands 69 86 2
## 12592 2020-10-17 Ohio 39 180225 5067
## 12593 2020-10-17 Oklahoma 40 106503 1168
## 12594 2020-10-17 Oregon 41 39316 622
## 12595 2020-10-17 Pennsylvania 42 185670 8535
## 12596 2020-10-17 Puerto Rico 72 56650 761
## 12597 2020-10-17 Rhode Island 44 27691 1152
## 12598 2020-10-17 South Carolina 45 163214 3637
## 12599 2020-10-17 South Dakota 46 32611 315
## 12600 2020-10-17 Tennessee 47 222608 2875
## 12601 2020-10-17 Texas 48 863993 17518
## 12602 2020-10-17 Utah 49 93297 541
## 12603 2020-10-17 Vermont 50 1926 58
## 12604 2020-10-17 Virgin Islands 78 1335 21
## 12605 2020-10-17 Virginia 51 165238 3422
## 12606 2020-10-17 Washington 53 102054 2339
## 12607 2020-10-17 West Virginia 54 19801 399
## 12608 2020-10-17 Wisconsin 55 175652 1588
## 12609 2020-10-17 Wyoming 56 8816 57
## 12610 2020-10-18 Alabama 1 172626 2788
## 12611 2020-10-18 Alaska 2 11934 63
## 12612 2020-10-18 Arizona 4 231149 5827
## 12613 2020-10-18 Arkansas 5 99066 1704
## 12614 2020-10-18 California 6 878395 16979
## 12615 2020-10-18 Colorado 8 85803 2199
## 12616 2020-10-18 Connecticut 9 62830 4542
## 12617 2020-10-18 Delaware 10 23093 665
## 12618 2020-10-18 District of Columbia 11 16370 641
## 12619 2020-10-18 Florida 12 755012 15966
## 12620 2020-10-18 Georgia 13 348773 7460
## 12621 2020-10-18 Guam 66 4507 64
## 12622 2020-10-18 Hawaii 15 14183 186
## 12623 2020-10-18 Idaho 16 53092 532
## 12624 2020-10-18 Illinois 17 348870 9491
## 12625 2020-10-18 Indiana 18 150005 3937
## 12626 2020-10-18 Iowa 19 107334 1532
## 12627 2020-10-18 Kansas 20 72722 859
## 12628 2020-10-18 Kentucky 21 89538 1372
## 12629 2020-10-18 Louisiana 22 178869 5750
## 12630 2020-10-18 Maine 23 5939 146
## 12631 2020-10-18 Maryland 24 136149 4037
## 12632 2020-10-18 Massachusetts 25 143660 9737
## 12633 2020-10-18 Michigan 26 159337 7323
## 12634 2020-10-18 Minnesota 27 122865 2287
## 12635 2020-10-18 Mississippi 28 110239 3171
## 12636 2020-10-18 Missouri 29 162156 2648
## 12637 2020-10-18 Montana 30 22821 241
## 12638 2020-10-18 Nebraska 31 58068 557
## 12639 2020-10-18 Nevada 32 90374 1711
## 12640 2020-10-18 New Hampshire 33 9694 467
## 12641 2020-10-18 New Jersey 34 221802 16211
## 12642 2020-10-18 New Mexico 35 36788 934
## 12643 2020-10-18 New York 36 489016 32972
## 12644 2020-10-18 North Carolina 37 246116 3961
## 12645 2020-10-18 North Dakota 38 31983 409
## 12646 2020-10-18 Northern Mariana Islands 69 86 2
## 12647 2020-10-18 Ohio 39 181787 5067
## 12648 2020-10-18 Oklahoma 40 107299 1171
## 12649 2020-10-18 Oregon 41 39532 622
## 12650 2020-10-18 Pennsylvania 42 186772 8555
## 12651 2020-10-18 Puerto Rico 72 57293 766
## 12652 2020-10-18 Rhode Island 44 27691 1152
## 12653 2020-10-18 South Carolina 45 163990 3650
## 12654 2020-10-18 South Dakota 46 33269 323
## 12655 2020-10-18 Tennessee 47 225126 2884
## 12656 2020-10-18 Texas 48 869376 17541
## 12657 2020-10-18 Utah 49 94394 544
## 12658 2020-10-18 Vermont 50 1937 58
## 12659 2020-10-18 Virgin Islands 78 1335 21
## 12660 2020-10-18 Virginia 51 166138 3433
## 12661 2020-10-18 Washington 53 102403 2339
## 12662 2020-10-18 West Virginia 54 20081 399
## 12663 2020-10-18 Wisconsin 55 175652 1588
## 12664 2020-10-18 Wyoming 56 9025 57
## 12665 2020-10-19 Alabama 1 173485 2789
## 12666 2020-10-19 Alaska 2 12138 63
## 12667 2020-10-19 Arizona 4 231933 5830
## 12668 2020-10-19 Arkansas 5 99597 1714
## 12669 2020-10-19 California 6 882666 16987
## 12670 2020-10-19 Colorado 8 86727 2207
## 12671 2020-10-19 Connecticut 9 64021 4554
## 12672 2020-10-19 Delaware 10 23196 666
## 12673 2020-10-19 District of Columbia 11 16395 641
## 12674 2020-10-19 Florida 12 756719 16020
## 12675 2020-10-19 Georgia 13 350654 7479
## 12676 2020-10-19 Guam 66 4725 67
## 12677 2020-10-19 Hawaii 15 14218 186
## 12678 2020-10-19 Idaho 16 54123 535
## 12679 2020-10-19 Illinois 17 352449 9520
## 12680 2020-10-19 Indiana 18 151588 3960
## 12681 2020-10-19 Iowa 19 108114 1548
## 12682 2020-10-19 Kansas 20 74616 872
## 12683 2020-10-19 Kentucky 21 90443 1381
## 12684 2020-10-19 Louisiana 22 179070 5766
## 12685 2020-10-19 Maine 23 5962 146
## 12686 2020-10-19 Maryland 24 136643 4041
## 12687 2020-10-19 Massachusetts 25 144488 9753
## 12688 2020-10-19 Michigan 26 164055 7364
## 12689 2020-10-19 Minnesota 27 124492 2292
## 12690 2020-10-19 Mississippi 28 110592 3171
## 12691 2020-10-19 Missouri 29 164249 2660
## 12692 2020-10-19 Montana 30 23503 242
## 12693 2020-10-19 Nebraska 31 58817 568
## 12694 2020-10-19 Nevada 32 90978 1714
## 12695 2020-10-19 New Hampshire 33 9746 468
## 12696 2020-10-19 New Jersey 34 222994 16214
## 12697 2020-10-19 New Mexico 35 37302 935
## 12698 2020-10-19 New York 36 490015 32990
## 12699 2020-10-19 North Carolina 37 247551 3969
## 12700 2020-10-19 North Dakota 38 32642 413
## 12701 2020-10-19 Northern Mariana Islands 69 86 2
## 12702 2020-10-19 Ohio 39 183624 5075
## 12703 2020-10-19 Oklahoma 40 108073 1173
## 12704 2020-10-19 Oregon 41 39799 630
## 12705 2020-10-19 Pennsylvania 42 188442 8562
## 12706 2020-10-19 Puerto Rico 72 57950 768
## 12707 2020-10-19 Rhode Island 44 28347 1159
## 12708 2020-10-19 South Carolina 45 164609 3661
## 12709 2020-10-19 South Dakota 46 33836 323
## 12710 2020-10-19 Tennessee 47 228267 2896
## 12711 2020-10-19 Texas 48 874080 17564
## 12712 2020-10-19 Utah 49 95572 547
## 12713 2020-10-19 Vermont 50 1946 58
## 12714 2020-10-19 Virgin Islands 78 1335 21
## 12715 2020-10-19 Virginia 51 166828 3457
## 12716 2020-10-19 Washington 53 103323 2357
## 12717 2020-10-19 West Virginia 54 20293 399
## 12718 2020-10-19 Wisconsin 55 183177 1624
## 12719 2020-10-19 Wyoming 56 9311 57
## 12720 2020-10-20 Alabama 1 174528 2805
## 12721 2020-10-20 Alaska 2 12349 63
## 12722 2020-10-20 Arizona 4 232939 5837
## 12723 2020-10-20 Arkansas 5 100441 1728
## 12724 2020-10-20 California 6 887094 17067
## 12725 2020-10-20 Colorado 8 87966 2212
## 12726 2020-10-20 Connecticut 9 64455 4559
## 12727 2020-10-20 Delaware 10 23325 668
## 12728 2020-10-20 District of Columbia 11 16445 642
## 12729 2020-10-20 Florida 12 760381 16104
## 12730 2020-10-20 Georgia 13 351990 7494
## 12731 2020-10-20 Guam 66 4855 67
## 12732 2020-10-20 Hawaii 15 14302 188
## 12733 2020-10-20 Idaho 16 55153 541
## 12734 2020-10-20 Illinois 17 356151 9562
## 12735 2020-10-20 Indiana 18 153088 4008
## 12736 2020-10-20 Iowa 19 109210 1576
## 12737 2020-10-20 Kansas 20 74883 902
## 12738 2020-10-20 Kentucky 21 91731 1403
## 12739 2020-10-20 Louisiana 22 179769 5772
## 12740 2020-10-20 Maine 23 5989 146
## 12741 2020-10-20 Maryland 24 137229 4050
## 12742 2020-10-20 Massachusetts 25 145464 9758
## 12743 2020-10-20 Michigan 26 165949 7386
## 12744 2020-10-20 Minnesota 27 125584 2299
## 12745 2020-10-20 Mississippi 28 111322 3202
## 12746 2020-10-20 Missouri 29 164891 2668
## 12747 2020-10-20 Montana 30 24201 252
## 12748 2020-10-20 Nebraska 31 59409 575
## 12749 2020-10-20 Nevada 32 91679 1728
## 12750 2020-10-20 New Hampshire 33 9828 468
## 12751 2020-10-20 New Jersey 34 223982 16227
## 12752 2020-10-20 New Mexico 35 37896 942
## 12753 2020-10-20 New York 36 491216 32998
## 12754 2020-10-20 North Carolina 37 249158 4018
## 12755 2020-10-20 North Dakota 38 33671 417
## 12756 2020-10-20 Northern Mariana Islands 69 88 2
## 12757 2020-10-20 Ohio 39 185639 5083
## 12758 2020-10-20 Oklahoma 40 109548 1191
## 12759 2020-10-20 Oregon 41 40149 636
## 12760 2020-10-20 Pennsylvania 42 189988 8591
## 12761 2020-10-20 Puerto Rico 72 58643 769
## 12762 2020-10-20 Rhode Island 44 28649 1164
## 12763 2020-10-20 South Carolina 45 165493 3696
## 12764 2020-10-20 South Dakota 46 34457 330
## 12765 2020-10-20 Tennessee 47 229794 2924
## 12766 2020-10-20 Texas 48 879949 17644
## 12767 2020-10-20 Utah 49 96643 552
## 12768 2020-10-20 Vermont 50 1956 58
## 12769 2020-10-20 Virgin Islands 78 1337 21
## 12770 2020-10-20 Virginia 51 167754 3485
## 12771 2020-10-20 Washington 53 103845 2380
## 12772 2020-10-20 West Virginia 54 20519 408
## 12773 2020-10-20 Wisconsin 55 187898 1660
## 12774 2020-10-20 Wyoming 56 9526 61
## 12775 2020-10-21 Alabama 1 175674 2828
## 12776 2020-10-21 Alaska 2 12559 64
## 12777 2020-10-21 Arizona 4 233948 5854
## 12778 2020-10-21 Arkansas 5 101596 1751
## 12779 2020-10-21 California 6 890154 17189
## 12780 2020-10-21 Colorado 8 89245 2220
## 12781 2020-10-21 Connecticut 9 64871 4567
## 12782 2020-10-21 Delaware 10 23375 670
## 12783 2020-10-21 District of Columbia 11 16498 642
## 12784 2020-10-21 Florida 12 762525 16209
## 12785 2020-10-21 Georgia 13 353449 7523
## 12786 2020-10-21 Guam 66 4937 69
## 12787 2020-10-21 Hawaii 15 14379 202
## 12788 2020-10-21 Idaho 16 55922 551
## 12789 2020-10-21 Illinois 17 360160 9622
## 12790 2020-10-21 Indiana 18 154822 4023
## 12791 2020-10-21 Iowa 19 110444 1594
## 12792 2020-10-21 Kansas 20 76299 952
## 12793 2020-10-21 Kentucky 21 93110 1424
## 12794 2020-10-21 Louisiana 22 181132 5790
## 12795 2020-10-21 Maine 23 6027 146
## 12796 2020-10-21 Maryland 24 137720 4058
## 12797 2020-10-21 Massachusetts 25 146166 9780
## 12798 2020-10-21 Michigan 26 167857 7420
## 12799 2020-10-21 Minnesota 27 126644 2334
## 12800 2020-10-21 Mississippi 28 112123 3223
## 12801 2020-10-21 Missouri 29 167435 2716
## 12802 2020-10-21 Montana 30 24818 276
## 12803 2020-10-21 Nebraska 31 60308 586
## 12804 2020-10-21 Nevada 32 92193 1735
## 12805 2020-10-21 New Hampshire 33 9917 469
## 12806 2020-10-21 New Jersey 34 225012 16245
## 12807 2020-10-21 New Mexico 35 38715 950
## 12808 2020-10-21 New York 36 493245 33005
## 12809 2020-10-21 North Carolina 37 251010 4063
## 12810 2020-10-21 North Dakota 38 34170 427
## 12811 2020-10-21 Northern Mariana Islands 69 88 2
## 12812 2020-10-21 Ohio 39 188005 5149
## 12813 2020-10-21 Oklahoma 40 110855 1210
## 12814 2020-10-21 Oregon 41 40458 638
## 12815 2020-10-21 Pennsylvania 42 191347 8629
## 12816 2020-10-21 Puerto Rico 72 58830 774
## 12817 2020-10-21 Rhode Island 44 29123 1169
## 12818 2020-10-21 South Carolina 45 166357 3708
## 12819 2020-10-21 South Dakota 46 35044 333
## 12820 2020-10-21 Tennessee 47 232100 2946
## 12821 2020-10-21 Texas 48 886421 17743
## 12822 2020-10-21 Utah 49 98037 558
## 12823 2020-10-21 Vermont 50 1971 58
## 12824 2020-10-21 Virgin Islands 78 1337 21
## 12825 2020-10-21 Virginia 51 168772 3515
## 12826 2020-10-21 Washington 53 104624 2384
## 12827 2020-10-21 West Virginia 54 20734 413
## 12828 2020-10-21 Wisconsin 55 192225 1707
## 12829 2020-10-21 Wyoming 56 9848 61
## 12830 2020-10-22 Alabama 1 177064 2843
## 12831 2020-10-22 Alaska 2 12790 64
## 12832 2020-10-22 Arizona 4 234914 5859
## 12833 2020-10-22 Arkansas 5 102798 1772
## 12834 2020-10-22 California 6 896427 17266
## 12835 2020-10-22 Colorado 8 90639 2224
## 12836 2020-10-22 Connecticut 9 65373 4569
## 12837 2020-10-22 Delaware 10 23528 670
## 12838 2020-10-22 District of Columbia 11 16537 642
## 12839 2020-10-22 Florida 12 768083 16266
## 12840 2020-10-22 Georgia 13 355156 7547
## 12841 2020-10-22 Guam 66 5025 70
## 12842 2020-10-22 Hawaii 15 14478 205
## 12843 2020-10-22 Idaho 16 56944 560
## 12844 2020-10-22 Illinois 17 365120 9663
## 12845 2020-10-22 Indiana 18 157678 4065
## 12846 2020-10-22 Iowa 19 112242 1617
## 12847 2020-10-22 Kansas 20 76546 952
## 12848 2020-10-22 Kentucky 21 94582 1439
## 12849 2020-10-22 Louisiana 22 181904 5799
## 12850 2020-10-22 Maine 23 6064 146
## 12851 2020-10-22 Maryland 24 138473 4070
## 12852 2020-10-22 Massachusetts 25 147215 9810
## 12853 2020-10-22 Michigan 26 170102 7465
## 12854 2020-10-22 Minnesota 27 128205 2354
## 12855 2020-10-22 Mississippi 28 113081 3231
## 12856 2020-10-22 Missouri 29 169311 2734
## 12857 2020-10-22 Montana 30 25736 279
## 12858 2020-10-22 Nebraska 31 61285 589
## 12859 2020-10-22 Nevada 32 93028 1736
## 12860 2020-10-22 New Hampshire 33 9994 470
## 12861 2020-10-22 New Jersey 34 226174 16263
## 12862 2020-10-22 New Mexico 35 39377 953
## 12863 2020-10-22 New York 36 494874 33022
## 12864 2020-10-22 North Carolina 37 253418 4110
## 12865 2020-10-22 North Dakota 38 35057 436
## 12866 2020-10-22 Northern Mariana Islands 69 88 2
## 12867 2020-10-22 Ohio 39 190430 5161
## 12868 2020-10-22 Oklahoma 40 112483 1221
## 12869 2020-10-22 Oregon 41 40825 647
## 12870 2020-10-22 Pennsylvania 42 193401 8660
## 12871 2020-10-22 Puerto Rico 72 59037 783
## 12872 2020-10-22 Rhode Island 44 29594 1173
## 12873 2020-10-22 South Carolina 45 167485 3755
## 12874 2020-10-22 South Dakota 46 36017 347
## 12875 2020-10-22 Tennessee 47 234079 2983
## 12876 2020-10-22 Texas 48 891714 17760
## 12877 2020-10-22 Utah 49 99563 563
## 12878 2020-10-22 Vermont 50 1987 58
## 12879 2020-10-22 Virgin Islands 78 1343 21
## 12880 2020-10-22 Virginia 51 170104 3524
## 12881 2020-10-22 Washington 53 105364 2389
## 12882 2020-10-22 West Virginia 54 21057 418
## 12883 2020-10-22 Wisconsin 55 195853 1730
## 12884 2020-10-22 Wyoming 56 10119 68
## 12885 2020-10-23 Alabama 1 180916 2859
## 12886 2020-10-23 Alaska 2 13067 64
## 12887 2020-10-23 Arizona 4 235910 5865
## 12888 2020-10-23 Arkansas 5 104135 1782
## 12889 2020-10-23 California 6 902328 17316
## 12890 2020-10-23 Colorado 8 92067 2233
## 12891 2020-10-23 Connecticut 9 66052 4577
## 12892 2020-10-23 Delaware 10 23687 678
## 12893 2020-10-23 District of Columbia 11 16609 642
## 12894 2020-10-23 Florida 12 771772 16339
## 12895 2020-10-23 Georgia 13 357319 7584
## 12896 2020-10-23 Guam 66 5110 70
## 12897 2020-10-23 Hawaii 15 14617 208
## 12898 2020-10-23 Idaho 16 58083 568
## 12899 2020-10-23 Illinois 17 370134 9704
## 12900 2020-10-23 Indiana 18 160145 4092
## 12901 2020-10-23 Iowa 19 113596 1629
## 12902 2020-10-23 Kansas 20 78122 975
## 12903 2020-10-23 Kentucky 21 96043 1462
## 12904 2020-10-23 Louisiana 22 182603 5820
## 12905 2020-10-23 Maine 23 6095 146
## 12906 2020-10-23 Maryland 24 139185 4078
## 12907 2020-10-23 Massachusetts 25 148285 9830
## 12908 2020-10-23 Michigan 26 172128 7485
## 12909 2020-10-23 Minnesota 27 129916 2367
## 12910 2020-10-23 Mississippi 28 113876 3238
## 12911 2020-10-23 Missouri 29 171871 2764
## 12912 2020-10-23 Montana 30 26600 283
## 12913 2020-10-23 Nebraska 31 62677 598
## 12914 2020-10-23 Nevada 32 94044 1739
## 12915 2020-10-23 New Hampshire 33 10112 471
## 12916 2020-10-23 New Jersey 34 227219 16273
## 12917 2020-10-23 New Mexico 35 40168 960
## 12918 2020-10-23 New York 36 496510 33038
## 12919 2020-10-23 North Carolina 37 255534 4140
## 12920 2020-10-23 North Dakota 38 35944 445
## 12921 2020-10-23 Northern Mariana Islands 69 88 2
## 12922 2020-10-23 Ohio 39 192948 5184
## 12923 2020-10-23 Oklahoma 40 113856 1234
## 12924 2020-10-23 Oregon 41 41357 651
## 12925 2020-10-23 Pennsylvania 42 195659 8695
## 12926 2020-10-23 Puerto Rico 72 60984 791
## 12927 2020-10-23 Rhode Island 44 30118 1177
## 12928 2020-10-23 South Carolina 45 168549 3777
## 12929 2020-10-23 South Dakota 46 37202 356
## 12930 2020-10-23 Tennessee 47 237607 3043
## 12931 2020-10-23 Texas 48 899390 17874
## 12932 2020-10-23 Utah 49 101574 567
## 12933 2020-10-23 Vermont 50 2016 58
## 12934 2020-10-23 Virgin Islands 78 1346 21
## 12935 2020-10-23 Virginia 51 171284 3539
## 12936 2020-10-23 Washington 53 106189 2396
## 12937 2020-10-23 West Virginia 54 21392 422
## 12938 2020-10-23 Wisconsin 55 200479 1776
## 12939 2020-10-23 Wyoming 56 10545 68
## 12940 2020-10-24 Alabama 1 183276 2866
## 12941 2020-10-24 Alaska 2 13439 64
## 12942 2020-10-24 Arizona 4 236898 5870
## 12943 2020-10-24 Arkansas 5 105318 1797
## 12944 2020-10-24 California 6 906645 17345
## 12945 2020-10-24 Colorado 8 93989 2241
## 12946 2020-10-24 Connecticut 9 66052 4577
## 12947 2020-10-24 Delaware 10 23847 680
## 12948 2020-10-24 District of Columbia 11 16706 642
## 12949 2020-10-24 Florida 12 776243 16416
## 12950 2020-10-24 Georgia 13 359001 7625
## 12951 2020-10-24 Guam 66 5144 72
## 12952 2020-10-24 Hawaii 15 14706 211
## 12953 2020-10-24 Idaho 16 58964 573
## 12954 2020-10-24 Illinois 17 376034 9765
## 12955 2020-10-24 Indiana 18 162886 4118
## 12956 2020-10-24 Iowa 19 114952 1634
## 12957 2020-10-24 Kansas 20 78177 975
## 12958 2020-10-24 Kentucky 21 97501 1469
## 12959 2020-10-24 Louisiana 22 182603 5820
## 12960 2020-10-24 Maine 23 6137 146
## 12961 2020-10-24 Maryland 24 139859 4091
## 12962 2020-10-24 Massachusetts 25 149488 9839
## 12963 2020-10-24 Michigan 26 175385 7522
## 12964 2020-10-24 Minnesota 27 132175 2381
## 12965 2020-10-24 Mississippi 28 115088 3255
## 12966 2020-10-24 Missouri 29 173746 2854
## 12967 2020-10-24 Montana 30 27149 295
## 12968 2020-10-24 Nebraska 31 63264 607
## 12969 2020-10-24 Nevada 32 94935 1746
## 12970 2020-10-24 New Hampshire 33 10238 473
## 12971 2020-10-24 New Jersey 34 229128 16281
## 12972 2020-10-24 New Mexico 35 41040 965
## 12973 2020-10-24 New York 36 498568 33049
## 12974 2020-10-24 North Carolina 37 258439 4170
## 12975 2020-10-24 North Dakota 38 36879 453
## 12976 2020-10-24 Northern Mariana Islands 69 88 2
## 12977 2020-10-24 Ohio 39 195806 5206
## 12978 2020-10-24 Oklahoma 40 115685 1245
## 12979 2020-10-24 Oregon 41 41739 654
## 12980 2020-10-24 Pennsylvania 42 197370 8721
## 12981 2020-10-24 Puerto Rico 72 61280 794
## 12982 2020-10-24 Rhode Island 44 30118 1177
## 12983 2020-10-24 South Carolina 45 169341 3793
## 12984 2020-10-24 South Dakota 46 38141 366
## 12985 2020-10-24 Tennessee 47 240191 3067
## 12986 2020-10-24 Texas 48 906657 17998
## 12987 2020-10-24 Utah 49 103137 568
## 12988 2020-10-24 Vermont 50 2043 58
## 12989 2020-10-24 Virgin Islands 78 1346 21
## 12990 2020-10-24 Virginia 51 172372 3578
## 12991 2020-10-24 Washington 53 106772 2396
## 12992 2020-10-24 West Virginia 54 21712 422
## 12993 2020-10-24 Wisconsin 55 205139 1804
## 12994 2020-10-24 Wyoming 56 10805 68
## 12995 2020-10-25 Alabama 1 184355 2866
## 12996 2020-10-25 Alaska 2 13968 64
## 12997 2020-10-25 Arizona 4 238200 5874
## 12998 2020-10-25 Arkansas 5 106115 1812
## 12999 2020-10-25 California 6 909345 17358
## 13000 2020-10-25 Colorado 8 95742 2244
## 13001 2020-10-25 Connecticut 9 66052 4577
## 13002 2020-10-25 Delaware 10 23961 681
## 13003 2020-10-25 District of Columbia 11 16767 642
## 13004 2020-10-25 Florida 12 778628 16428
## 13005 2020-10-25 Georgia 13 360344 7626
## 13006 2020-10-25 Guam 66 5185 72
## 13007 2020-10-25 Hawaii 15 14823 211
## 13008 2020-10-25 Idaho 16 59344 574
## 13009 2020-10-25 Illinois 17 380065 9788
## 13010 2020-10-25 Indiana 18 165038 4130
## 13011 2020-10-25 Iowa 19 116238 1635
## 13012 2020-10-25 Kansas 20 78241 975
## 13013 2020-10-25 Kentucky 21 98730 1472
## 13014 2020-10-25 Louisiana 22 183575 5837
## 13015 2020-10-25 Maine 23 6201 146
## 13016 2020-10-25 Maryland 24 140770 4096
## 13017 2020-10-25 Massachusetts 25 150565 9864
## 13018 2020-10-25 Michigan 26 175515 7522
## 13019 2020-10-25 Minnesota 27 133855 2402
## 13020 2020-10-25 Mississippi 28 115088 3255
## 13021 2020-10-25 Missouri 29 175243 2857
## 13022 2020-10-25 Montana 30 27880 298
## 13023 2020-10-25 Nebraska 31 63849 608
## 13024 2020-10-25 Nevada 32 95798 1748
## 13025 2020-10-25 New Hampshire 33 10328 473
## 13026 2020-10-25 New Jersey 34 230257 16285
## 13027 2020-10-25 New Mexico 35 41863 967
## 13028 2020-10-25 New York 36 500201 33059
## 13029 2020-10-25 North Carolina 37 260128 4183
## 13030 2020-10-25 North Dakota 38 37724 461
## 13031 2020-10-25 Northern Mariana Islands 69 88 2
## 13032 2020-10-25 Ohio 39 198115 5206
## 13033 2020-10-25 Oklahoma 40 116736 1249
## 13034 2020-10-25 Oregon 41 42101 654
## 13035 2020-10-25 Pennsylvania 42 198756 8730
## 13036 2020-10-25 Puerto Rico 72 62503 801
## 13037 2020-10-25 Rhode Island 44 30118 1177
## 13038 2020-10-25 South Carolina 45 170678 3802
## 13039 2020-10-25 South Dakota 46 39203 375
## 13040 2020-10-25 Tennessee 47 243508 3105
## 13041 2020-10-25 Texas 48 910592 18042
## 13042 2020-10-25 Utah 49 105053 572
## 13043 2020-10-25 Vermont 50 2073 58
## 13044 2020-10-25 Virgin Islands 78 1346 21
## 13045 2020-10-25 Virginia 51 173371 3579
## 13046 2020-10-25 Washington 53 107270 2396
## 13047 2020-10-25 West Virginia 54 21906 423
## 13048 2020-10-25 Wisconsin 55 208917 1814
## 13049 2020-10-25 Wyoming 56 11041 68
## 13050 2020-10-26 Alabama 1 185322 2866
## 13051 2020-10-26 Alaska 2 14316 64
## 13052 2020-10-26 Arizona 4 239193 5875
## 13053 2020-10-26 Arkansas 5 106727 1833
## 13054 2020-10-26 California 6 913707 17398
## 13055 2020-10-26 Colorado 8 97686 2255
## 13056 2020-10-26 Connecticut 9 68099 4589
## 13057 2020-10-26 Delaware 10 24168 685
## 13058 2020-10-26 District of Columbia 11 16812 642
## 13059 2020-10-26 Florida 12 782005 16448
## 13060 2020-10-26 Georgia 13 364275 7644
## 13061 2020-10-26 Guam 66 5305 76
## 13062 2020-10-26 Hawaii 15 14858 211
## 13063 2020-10-26 Idaho 16 60400 582
## 13064 2020-10-26 Illinois 17 385084 9811
## 13065 2020-10-26 Indiana 18 167010 4143
## 13066 2020-10-26 Iowa 19 117198 1657
## 13067 2020-10-26 Kansas 20 80473 976
## 13068 2020-10-26 Kentucky 21 99965 1480
## 13069 2020-10-26 Louisiana 22 183802 5854
## 13070 2020-10-26 Maine 23 6254 146
## 13071 2020-10-26 Maryland 24 141334 4099
## 13072 2020-10-26 Massachusetts 25 151777 9881
## 13073 2020-10-26 Michigan 26 179624 7551
## 13074 2020-10-26 Minnesota 27 135425 2406
## 13075 2020-10-26 Mississippi 28 115763 3263
## 13076 2020-10-26 Missouri 29 177733 2869
## 13077 2020-10-26 Montana 30 28580 304
## 13078 2020-10-26 Nebraska 31 64692 612
## 13079 2020-10-26 Nevada 32 96330 1751
## 13080 2020-10-26 New Hampshire 33 10397 475
## 13081 2020-10-26 New Jersey 34 231473 16292
## 13082 2020-10-26 New Mexico 35 42586 976
## 13083 2020-10-26 New York 36 501393 33073
## 13084 2020-10-26 North Carolina 37 262159 4200
## 13085 2020-10-26 North Dakota 38 38246 466
## 13086 2020-10-26 Northern Mariana Islands 69 92 2
## 13087 2020-10-26 Ohio 39 200231 5217
## 13088 2020-10-26 Oklahoma 40 117399 1251
## 13089 2020-10-26 Oregon 41 42454 657
## 13090 2020-10-26 Pennsylvania 42 201248 8737
## 13091 2020-10-26 Puerto Rico 72 63135 804
## 13092 2020-10-26 Rhode Island 44 31024 1184
## 13093 2020-10-26 South Carolina 45 171501 3823
## 13094 2020-10-26 South Dakota 46 39741 375
## 13095 2020-10-26 Tennessee 47 245760 3132
## 13096 2020-10-26 Texas 48 917240 18077
## 13097 2020-10-26 Utah 49 106083 575
## 13098 2020-10-26 Vermont 50 2083 58
## 13099 2020-10-26 Virgin Islands 78 1348 21
## 13100 2020-10-26 Virginia 51 174275 3581
## 13101 2020-10-26 Washington 53 108393 2428
## 13102 2020-10-26 West Virginia 54 22223 424
## 13103 2020-10-26 Wisconsin 55 212116 1825
## 13104 2020-10-26 Wyoming 56 11477 77
## 13105 2020-10-27 Alabama 1 186437 2892
## 13106 2020-10-27 Alaska 2 14699 66
## 13107 2020-10-27 Arizona 4 240158 5891
## 13108 2020-10-27 Arkansas 5 107679 1857
## 13109 2020-10-27 California 6 918635 17478
## 13110 2020-10-27 Colorado 8 99111 2265
## 13111 2020-10-27 Connecticut 9 68637 4595
## 13112 2020-10-27 Delaware 10 24249 686
## 13113 2020-10-27 District of Columbia 11 16906 644
## 13114 2020-10-27 Florida 12 786303 16504
## 13115 2020-10-27 Georgia 13 365498 7661
## 13116 2020-10-27 Guam 66 5387 76
## 13117 2020-10-27 Hawaii 15 14920 214
## 13118 2020-10-27 Idaho 16 61282 588
## 13119 2020-10-27 Illinois 17 389088 9860
## 13120 2020-10-27 Indiana 18 168996 4194
## 13121 2020-10-27 Iowa 19 118852 1680
## 13122 2020-10-27 Kansas 20 80761 979
## 13123 2020-10-27 Kentucky 21 101700 1493
## 13124 2020-10-27 Louisiana 22 184724 5872
## 13125 2020-10-27 Maine 23 6311 146
## 13126 2020-10-27 Maryland 24 142237 4108
## 13127 2020-10-27 Massachusetts 25 153037 9888
## 13128 2020-10-27 Michigan 26 182284 7585
## 13129 2020-10-27 Minnesota 27 137589 2421
## 13130 2020-10-27 Mississippi 28 116617 3283
## 13131 2020-10-27 Missouri 29 179457 2912
## 13132 2020-10-27 Montana 30 29422 309
## 13133 2020-10-27 Nebraska 31 65552 626
## 13134 2020-10-27 Nevada 32 97138 1757
## 13135 2020-10-27 New Hampshire 33 10530 475
## 13136 2020-10-27 New Jersey 34 233120 16306
## 13137 2020-10-27 New Mexico 35 43169 980
## 13138 2020-10-27 New York 36 503387 33092
## 13139 2020-10-27 North Carolina 37 264334 4236
## 13140 2020-10-27 North Dakota 38 39135 481
## 13141 2020-10-27 Northern Mariana Islands 69 92 2
## 13142 2020-10-27 Ohio 39 202740 5239
## 13143 2020-10-27 Oklahoma 40 118409 1273
## 13144 2020-10-27 Oregon 41 42821 665
## 13145 2020-10-27 Pennsylvania 42 203520 8760
## 13146 2020-10-27 Puerto Rico 72 63497 808
## 13147 2020-10-27 Rhode Island 44 31445 1188
## 13148 2020-10-27 South Carolina 45 172579 3842
## 13149 2020-10-27 South Dakota 46 40730 375
## 13150 2020-10-27 Tennessee 47 247688 3176
## 13151 2020-10-27 Texas 48 924475 18155
## 13152 2020-10-27 Utah 49 107246 579
## 13153 2020-10-27 Vermont 50 2113 58
## 13154 2020-10-27 Virgin Islands 78 1351 21
## 13155 2020-10-27 Virginia 51 175409 3600
## 13156 2020-10-27 Washington 53 108966 2438
## 13157 2020-10-27 West Virginia 54 22706 432
## 13158 2020-10-27 Wisconsin 55 217447 1896
## 13159 2020-10-27 Wyoming 56 11806 77
## 13160 2020-10-28 Alabama 1 187706 2911
## 13161 2020-10-28 Alaska 2 15053 67
## 13162 2020-10-28 Arizona 4 241259 5906
## 13163 2020-10-28 Arkansas 5 108640 1875
## 13164 2020-10-28 California 6 922685 17541
## 13165 2020-10-28 Colorado 8 100614 2277
## 13166 2020-10-28 Connecticut 9 69127 4604
## 13167 2020-10-28 Delaware 10 24392 688
## 13168 2020-10-28 District of Columbia 11 16973 644
## 13169 2020-10-28 Florida 12 790418 16570
## 13170 2020-10-28 Georgia 13 367126 7692
## 13171 2020-10-28 Guam 66 5435 77
## 13172 2020-10-28 Hawaii 15 14975 212
## 13173 2020-10-28 Idaho 16 62197 600
## 13174 2020-10-28 Illinois 17 395204 9912
## 13175 2020-10-28 Indiana 18 171566 4227
## 13176 2020-10-28 Iowa 19 120911 1691
## 13177 2020-10-28 Kansas 20 83485 1007
## 13178 2020-10-28 Kentucky 21 103685 1509
## 13179 2020-10-28 Louisiana 22 185822 5890
## 13180 2020-10-28 Maine 23 6387 146
## 13181 2020-10-28 Maryland 24 142918 4115
## 13182 2020-10-28 Massachusetts 25 154218 9924
## 13183 2020-10-28 Michigan 26 185818 7606
## 13184 2020-10-28 Minnesota 27 139497 2440
## 13185 2020-10-28 Mississippi 28 117617 3302
## 13186 2020-10-28 Missouri 29 181877 2940
## 13187 2020-10-28 Montana 30 30051 326
## 13188 2020-10-28 Nebraska 31 66682 634
## 13189 2020-10-28 Nevada 32 97824 1767
## 13190 2020-10-28 New Hampshire 33 10641 478
## 13191 2020-10-28 New Jersey 34 234790 16324
## 13192 2020-10-28 New Mexico 35 43826 991
## 13193 2020-10-28 New York 36 505416 33107
## 13194 2020-10-28 North Carolina 37 266566 4275
## 13195 2020-10-28 North Dakota 38 39912 493
## 13196 2020-10-28 Northern Mariana Islands 69 92 2
## 13197 2020-10-28 Ohio 39 205347 5256
## 13198 2020-10-28 Oklahoma 40 119152 1286
## 13199 2020-10-28 Oregon 41 43228 673
## 13200 2020-10-28 Pennsylvania 42 205852 8789
## 13201 2020-10-28 Puerto Rico 72 63587 813
## 13202 2020-10-28 Rhode Island 44 31944 1192
## 13203 2020-10-28 South Carolina 45 173491 3876
## 13204 2020-10-28 South Dakota 46 42000 384
## 13205 2020-10-28 Tennessee 47 250269 3209
## 13206 2020-10-28 Texas 48 932245 18251
## 13207 2020-10-28 Utah 49 108863 588
## 13208 2020-10-28 Vermont 50 2120 58
## 13209 2020-10-28 Virgin Islands 78 1353 21
## 13210 2020-10-28 Virginia 51 176754 3616
## 13211 2020-10-28 Washington 53 109865 2454
## 13212 2020-10-28 West Virginia 54 23064 436
## 13213 2020-10-28 Wisconsin 55 221578 1953
## 13214 2020-10-28 Wyoming 56 12146 77
## 13215 2020-10-29 Alabama 1 189149 2914
## 13216 2020-10-29 Alaska 2 15417 72
## 13217 2020-10-29 Arizona 4 242510 5920
## 13218 2020-10-29 Arkansas 5 109712 1894
## 13219 2020-10-29 California 6 926910 17567
## 13220 2020-10-29 Colorado 8 102665 2295
## 13221 2020-10-29 Connecticut 9 70446 4609
## 13222 2020-10-29 Delaware 10 24553 689
## 13223 2020-10-29 District of Columbia 11 17074 645
## 13224 2020-10-29 Florida 12 794616 16647
## 13225 2020-10-29 Georgia 13 368840 7737
## 13226 2020-10-29 Guam 66 5518 79
## 13227 2020-10-29 Hawaii 15 15046 214
## 13228 2020-10-29 Idaho 16 63195 618
## 13229 2020-10-29 Illinois 17 401622 9963
## 13230 2020-10-29 Indiana 18 175190 4260
## 13231 2020-10-29 Iowa 19 123232 1705
## 13232 2020-10-29 Kansas 20 83838 1008
## 13233 2020-10-29 Kentucky 21 105517 1524
## 13234 2020-10-29 Louisiana 22 186216 5908
## 13235 2020-10-29 Maine 23 6467 146
## 13236 2020-10-29 Maryland 24 143875 4127
## 13237 2020-10-29 Massachusetts 25 155564 9951
## 13238 2020-10-29 Michigan 26 189926 7651
## 13239 2020-10-29 Minnesota 27 142364 2472
## 13240 2020-10-29 Mississippi 28 118587 3310
## 13241 2020-10-29 Missouri 29 184847 2978
## 13242 2020-10-29 Montana 30 30932 339
## 13243 2020-10-29 Nebraska 31 68150 646
## 13244 2020-10-29 Nevada 32 98814 1770
## 13245 2020-10-29 New Hampshire 33 10768 482
## 13246 2020-10-29 New Jersey 34 236340 16332
## 13247 2020-10-29 New Mexico 35 44904 994
## 13248 2020-10-29 New York 36 507913 33128
## 13249 2020-10-29 North Carolina 37 269419 4307
## 13250 2020-10-29 North Dakota 38 41135 504
## 13251 2020-10-29 Northern Mariana Islands 69 92 2
## 13252 2020-10-29 Ohio 39 208937 5275
## 13253 2020-10-29 Oklahoma 40 120193 1306
## 13254 2020-10-29 Oregon 41 43793 674
## 13255 2020-10-29 Pennsylvania 42 208087 8828
## 13256 2020-10-29 Puerto Rico 72 64798 814
## 13257 2020-10-29 Rhode Island 44 32312 1195
## 13258 2020-10-29 South Carolina 45 174591 3889
## 13259 2020-10-29 South Dakota 46 43000 403
## 13260 2020-10-29 Tennessee 47 252727 3229
## 13261 2020-10-29 Texas 48 939355 18372
## 13262 2020-10-29 Utah 49 110666 598
## 13263 2020-10-29 Vermont 50 2141 58
## 13264 2020-10-29 Virgin Islands 78 1353 21
## 13265 2020-10-29 Virginia 51 178183 3636
## 13266 2020-10-29 Washington 53 110748 2463
## 13267 2020-10-29 West Virginia 54 23466 443
## 13268 2020-10-29 Wisconsin 55 226712 2008
## 13269 2020-10-29 Wyoming 56 12507 87
## 13270 2020-10-30 Alabama 1 190496 2932
## 13271 2020-10-30 Alaska 2 15803 76
## 13272 2020-10-30 Arizona 4 244099 5934
## 13273 2020-10-30 Arkansas 5 110874 1900
## 13274 2020-10-30 California 6 931843 17627
## 13275 2020-10-30 Colorado 8 104927 2302
## 13276 2020-10-30 Connecticut 9 71207 4616
## 13277 2020-10-30 Delaware 10 24751 704
## 13278 2020-10-30 District of Columbia 11 17144 646
## 13279 2020-10-30 Florida 12 800208 16719
## 13280 2020-10-30 Georgia 13 370157 7768
## 13281 2020-10-30 Guam 66 5597 80
## 13282 2020-10-30 Hawaii 15 15145 215
## 13283 2020-10-30 Idaho 16 64175 627
## 13284 2020-10-30 Illinois 17 410141 10012
## 13285 2020-10-30 Indiana 18 178372 4286
## 13286 2020-10-30 Iowa 19 125973 1714
## 13287 2020-10-30 Kansas 20 86768 1029
## 13288 2020-10-30 Kentucky 21 107620 1543
## 13289 2020-10-30 Louisiana 22 186649 5919
## 13290 2020-10-30 Maine 23 6570 146
## 13291 2020-10-30 Maryland 24 144800 4137
## 13292 2020-10-30 Massachusetts 25 157146 9975
## 13293 2020-10-30 Michigan 26 193360 7664
## 13294 2020-10-30 Minnesota 27 145519 2491
## 13295 2020-10-30 Mississippi 28 119336 3328
## 13296 2020-10-30 Missouri 29 187830 3014
## 13297 2020-10-30 Montana 30 31995 368
## 13298 2020-10-30 Nebraska 31 69699 648
## 13299 2020-10-30 Nevada 32 100038 1777
## 13300 2020-10-30 New Hampshire 33 10884 482
## 13301 2020-10-30 New Jersey 34 238316 16339
## 13302 2020-10-30 New Mexico 35 45909 1007
## 13303 2020-10-30 New York 36 510171 33143
## 13304 2020-10-30 North Carolina 37 272231 4354
## 13305 2020-10-30 North Dakota 38 42488 517
## 13306 2020-10-30 Northern Mariana Islands 69 92 2
## 13307 2020-10-30 Ohio 39 212782 5291
## 13308 2020-10-30 Oklahoma 40 121495 1326
## 13309 2020-10-30 Oregon 41 44388 677
## 13310 2020-10-30 Pennsylvania 42 210586 8860
## 13311 2020-10-30 Puerto Rico 72 65743 820
## 13312 2020-10-30 Rhode Island 44 32874 1201
## 13313 2020-10-30 South Carolina 45 175594 3896
## 13314 2020-10-30 South Dakota 46 44559 415
## 13315 2020-10-30 Tennessee 47 255332 3307
## 13316 2020-10-30 Texas 48 946023 18477
## 13317 2020-10-30 Utah 49 112932 601
## 13318 2020-10-30 Vermont 50 2155 58
## 13319 2020-10-30 Virgin Islands 78 1362 21
## 13320 2020-10-30 Virginia 51 179639 3643
## 13321 2020-10-30 Washington 53 111893 2468
## 13322 2020-10-30 West Virginia 54 23990 451
## 13323 2020-10-30 Wisconsin 55 232092 2034
## 13324 2020-10-30 Wyoming 56 13028 87
## 13325 2020-10-31 Alabama 1 192285 2967
## 13326 2020-10-31 Alaska 2 16247 77
## 13327 2020-10-31 Arizona 4 245962 5979
## 13328 2020-10-31 Arkansas 5 112190 1925
## 13329 2020-10-31 California 6 935262 17661
## 13330 2020-10-31 Colorado 8 107844 2309
## 13331 2020-10-31 Connecticut 9 71207 4616
## 13332 2020-10-31 Delaware 10 24951 708
## 13333 2020-10-31 District of Columbia 11 17266 646
## 13334 2020-10-31 Florida 12 802539 16760
## 13335 2020-10-31 Georgia 13 372631 7790
## 13336 2020-10-31 Guam 66 5650 80
## 13337 2020-10-31 Hawaii 15 15207 218
## 13338 2020-10-31 Idaho 16 64797 630
## 13339 2020-10-31 Illinois 17 416557 10030
## 13340 2020-10-31 Indiana 18 181837 4332
## 13341 2020-10-31 Iowa 19 128798 1716
## 13342 2020-10-31 Kansas 20 86771 1029
## 13343 2020-10-31 Kentucky 21 109244 1551
## 13344 2020-10-31 Louisiana 22 186649 5919
## 13345 2020-10-31 Maine 23 6668 147
## 13346 2020-10-31 Maryland 24 145593 4147
## 13347 2020-10-31 Massachusetts 25 158576 9991
## 13348 2020-10-31 Michigan 26 197164 7699
## 13349 2020-10-31 Minnesota 27 148526 2511
## 13350 2020-10-31 Mississippi 28 120160 3334
## 13351 2020-10-31 Missouri 29 189925 3090
## 13352 2020-10-31 Montana 30 32801 377
## 13353 2020-10-31 Nebraska 31 70761 654
## 13354 2020-10-31 Nevada 32 100844 1779
## 13355 2020-10-31 New Hampshire 33 11084 483
## 13356 2020-10-31 New Jersey 34 239679 16350
## 13357 2020-10-31 New Mexico 35 46490 1018
## 13358 2020-10-31 New York 36 512223 33152
## 13359 2020-10-31 North Carolina 37 274805 4400
## 13360 2020-10-31 North Dakota 38 43921 529
## 13361 2020-10-31 Northern Mariana Islands 69 92 2
## 13362 2020-10-31 Ohio 39 215697 5301
## 13363 2020-10-31 Oklahoma 40 122762 1337
## 13364 2020-10-31 Oregon 41 44923 690
## 13365 2020-10-31 Pennsylvania 42 212816 8883
## 13366 2020-10-31 Puerto Rico 72 66128 822
## 13367 2020-10-31 Rhode Island 44 32874 1201
## 13368 2020-10-31 South Carolina 45 176612 3935
## 13369 2020-10-31 South Dakota 46 45992 425
## 13370 2020-10-31 Tennessee 47 256923 3322
## 13371 2020-10-31 Texas 48 953451 18549
## 13372 2020-10-31 Utah 49 114670 604
## 13373 2020-10-31 Vermont 50 2179 58
## 13374 2020-10-31 Virgin Islands 78 1376 21
## 13375 2020-10-31 Virginia 51 181190 3654
## 13376 2020-10-31 Washington 53 112580 2468
## 13377 2020-10-31 West Virginia 54 24460 457
## 13378 2020-10-31 Wisconsin 55 237870 2092
## 13379 2020-10-31 Wyoming 56 13298 87
## 13380 2020-11-01 Alabama 1 193985 2973
## 13381 2020-11-01 Alaska 2 16597 78
## 13382 2020-11-01 Arizona 4 247484 5981
## 13383 2020-11-01 Arkansas 5 113057 1958
## 13384 2020-11-01 California 6 938897 17671
## 13385 2020-11-01 Colorado 8 110640 2312
## 13386 2020-11-01 Connecticut 9 71207 4616
## 13387 2020-11-01 Delaware 10 25126 710
## 13388 2020-11-01 District of Columbia 11 17369 646
## 13389 2020-11-01 Florida 12 807404 16788
## 13390 2020-11-01 Georgia 13 373700 7792
## 13391 2020-11-01 Guam 66 5659 80
## 13392 2020-11-01 Hawaii 15 15287 218
## 13393 2020-11-01 Idaho 16 65272 631
## 13394 2020-11-01 Illinois 17 424860 10091
## 13395 2020-11-01 Indiana 18 184589 4364
## 13396 2020-11-01 Iowa 19 131097 1733
## 13397 2020-11-01 Kansas 20 86809 1029
## 13398 2020-11-01 Kentucky 21 110600 1554
## 13399 2020-11-01 Louisiana 22 187720 5926
## 13400 2020-11-01 Maine 23 6715 147
## 13401 2020-11-01 Maryland 24 146627 4152
## 13402 2020-11-01 Massachusetts 25 159707 10013
## 13403 2020-11-01 Michigan 26 197501 7700
## 13404 2020-11-01 Minnesota 27 150726 2529
## 13405 2020-11-01 Mississippi 28 120500 3348
## 13406 2020-11-01 Missouri 29 192141 3091
## 13407 2020-11-01 Montana 30 33495 378
## 13408 2020-11-01 Nebraska 31 71666 661
## 13409 2020-11-01 Nevada 32 101594 1783
## 13410 2020-11-01 New Hampshire 33 11214 483
## 13411 2020-11-01 New Jersey 34 241422 16354
## 13412 2020-11-01 New Mexico 35 47232 1026
## 13413 2020-11-01 New York 36 514482 33174
## 13414 2020-11-01 North Carolina 37 276706 4405
## 13415 2020-11-01 North Dakota 38 45048 536
## 13416 2020-11-01 Northern Mariana Islands 69 96 2
## 13417 2020-11-01 Ohio 39 219000 5303
## 13418 2020-11-01 Oklahoma 40 124111 1345
## 13419 2020-11-01 Oregon 41 45419 691
## 13420 2020-11-01 Pennsylvania 42 214500 8888
## 13421 2020-11-01 Puerto Rico 72 66661 832
## 13422 2020-11-01 Rhode Island 44 32874 1201
## 13423 2020-11-01 South Carolina 45 178023 3936
## 13424 2020-11-01 South Dakota 46 47324 437
## 13425 2020-11-01 Tennessee 47 257658 3322
## 13426 2020-11-01 Texas 48 957789 18582
## 13427 2020-11-01 Utah 49 116510 614
## 13428 2020-11-01 Vermont 50 2196 58
## 13429 2020-11-01 Virgin Islands 78 1376 21
## 13430 2020-11-01 Virginia 51 182392 3655
## 13431 2020-11-01 Washington 53 113109 2468
## 13432 2020-11-01 West Virginia 54 24883 457
## 13433 2020-11-01 Wisconsin 55 241423 2110
## 13434 2020-11-01 Wyoming 56 13723 87
## 13435 2020-11-02 Alabama 1 194892 2973
## 13436 2020-11-02 Alaska 2 16948 79
## 13437 2020-11-02 Arizona 4 248293 5982
## 13438 2020-11-02 Arkansas 5 113641 1985
## 13439 2020-11-02 California 6 944148 17700
## 13440 2020-11-02 Colorado 8 112821 2320
## 13441 2020-11-02 Connecticut 9 73858 4627
## 13442 2020-11-02 Delaware 10 25311 710
## 13443 2020-11-02 District of Columbia 11 17438 647
## 13444 2020-11-02 Florida 12 812055 16833
## 13445 2020-11-02 Georgia 13 377261 7810
## 13446 2020-11-02 Guam 66 5662 80
## 13447 2020-11-02 Hawaii 15 15359 218
## 13448 2020-11-02 Idaho 16 66249 641
## 13449 2020-11-02 Illinois 17 431281 10115
## 13450 2020-11-02 Indiana 18 187665 4390
## 13451 2020-11-02 Iowa 19 132697 1755
## 13452 2020-11-02 Kansas 20 90613 1046
## 13453 2020-11-02 Kentucky 21 111816 1565
## 13454 2020-11-02 Louisiana 22 187995 5934
## 13455 2020-11-02 Maine 23 6799 148
## 13456 2020-11-02 Maryland 24 147477 4155
## 13457 2020-11-02 Massachusetts 25 160549 10023
## 13458 2020-11-02 Michigan 26 204135 7716
## 13459 2020-11-02 Minnesota 27 153674 2538
## 13460 2020-11-02 Mississippi 28 120865 3348
## 13461 2020-11-02 Missouri 29 195938 3101
## 13462 2020-11-02 Montana 30 34317 387
## 13463 2020-11-02 Nebraska 31 72905 662
## 13464 2020-11-02 Nevada 32 102243 1785
## 13465 2020-11-02 New Hampshire 33 11320 483
## 13466 2020-11-02 New Jersey 34 242790 16357
## 13467 2020-11-02 New Mexico 35 48104 1036
## 13468 2020-11-02 New York 36 516114 33187
## 13469 2020-11-02 North Carolina 37 278477 4413
## 13470 2020-11-02 North Dakota 38 46020 545
## 13471 2020-11-02 Northern Mariana Islands 69 96 2
## 13472 2020-11-02 Ohio 39 221909 5340
## 13473 2020-11-02 Oklahoma 40 125195 1354
## 13474 2020-11-02 Oregon 41 45978 694
## 13475 2020-11-02 Pennsylvania 42 217243 8893
## 13476 2020-11-02 Puerto Rico 72 68172 839
## 13477 2020-11-02 Rhode Island 44 34120 1210
## 13478 2020-11-02 South Carolina 45 178917 3946
## 13479 2020-11-02 South Dakota 46 47850 438
## 13480 2020-11-02 Tennessee 47 260275 3347
## 13481 2020-11-02 Texas 48 965780 18626
## 13482 2020-11-02 Utah 49 117767 614
## 13483 2020-11-02 Vermont 50 2219 58
## 13484 2020-11-02 Virgin Islands 78 1376 21
## 13485 2020-11-02 Virginia 51 183418 3658
## 13486 2020-11-02 Washington 53 114787 2484
## 13487 2020-11-02 West Virginia 54 25235 458
## 13488 2020-11-02 Wisconsin 55 244974 2117
## 13489 2020-11-02 Wyoming 56 14167 87
## 13490 2020-11-03 Alabama 1 195929 2987
## 13491 2020-11-03 Alaska 2 17339 79
## 13492 2020-11-03 Arizona 4 249841 6022
## 13493 2020-11-03 Arkansas 5 114519 2003
## 13494 2020-11-03 California 6 949390 17751
## 13495 2020-11-03 Colorado 8 115364 2337
## 13496 2020-11-03 Connecticut 9 74843 4635
## 13497 2020-11-03 Delaware 10 25426 712
## 13498 2020-11-03 District of Columbia 11 17524 647
## 13499 2020-11-03 Florida 12 816692 16889
## 13500 2020-11-03 Georgia 13 378894 7837
## 13501 2020-11-03 Guam 66 5781 81
## 13502 2020-11-03 Hawaii 15 15441 218
## 13503 2020-11-03 Idaho 16 67504 649
## 13504 2020-11-03 Illinois 17 437879 10177
## 13505 2020-11-03 Indiana 18 190555 4439
## 13506 2020-11-03 Iowa 19 134576 1780
## 13507 2020-11-03 Kansas 20 91072 1051
## 13508 2020-11-03 Kentucky 21 113457 1578
## 13509 2020-11-03 Louisiana 22 189148 5951
## 13510 2020-11-03 Maine 23 6926 148
## 13511 2020-11-03 Maryland 24 148249 4162
## 13512 2020-11-03 Massachusetts 25 161585 10035
## 13513 2020-11-03 Michigan 26 207799 7758
## 13514 2020-11-03 Minnesota 27 157150 2553
## 13515 2020-11-03 Mississippi 28 121509 3384
## 13516 2020-11-03 Missouri 29 198312 3136
## 13517 2020-11-03 Montana 30 35222 400
## 13518 2020-11-03 Nebraska 31 74120 665
## 13519 2020-11-03 Nevada 32 103305 1807
## 13520 2020-11-03 New Hampshire 33 11448 483
## 13521 2020-11-03 New Jersey 34 244614 16371
## 13522 2020-11-03 New Mexico 35 49240 1045
## 13523 2020-11-03 New York 36 518431 33198
## 13524 2020-11-03 North Carolina 37 280657 4481
## 13525 2020-11-03 North Dakota 38 47192 561
## 13526 2020-11-03 Northern Mariana Islands 69 96 2
## 13527 2020-11-03 Ohio 39 226138 5373
## 13528 2020-11-03 Oklahoma 40 126526 1375
## 13529 2020-11-03 Oregon 41 46460 701
## 13530 2020-11-03 Pennsylvania 42 220111 8926
## 13531 2020-11-03 Puerto Rico 72 68943 842
## 13532 2020-11-03 Rhode Island 44 34543 1212
## 13533 2020-11-03 South Carolina 45 179952 3968
## 13534 2020-11-03 South Dakota 46 48854 446
## 13535 2020-11-03 Tennessee 47 262053 3419
## 13536 2020-11-03 Texas 48 974292 18722
## 13537 2020-11-03 Utah 49 119375 620
## 13538 2020-11-03 Vermont 50 2237 58
## 13539 2020-11-03 Virgin Islands 78 1385 22
## 13540 2020-11-03 Virginia 51 184679 3666
## 13541 2020-11-03 Washington 53 115608 2507
## 13542 2020-11-03 West Virginia 54 25593 469
## 13543 2020-11-03 Wisconsin 55 251227 2179
## 13544 2020-11-03 Wyoming 56 14619 93
## 13545 2020-11-04 Alabama 1 197777 3006
## 13546 2020-11-04 Alaska 2 17750 79
## 13547 2020-11-04 Arizona 4 250853 6059
## 13548 2020-11-04 Arkansas 5 115812 2026
## 13549 2020-11-04 California 6 954629 17818
## 13550 2020-11-04 Colorado 8 118356 2366
## 13551 2020-11-04 Connecticut 9 75373 4645
## 13552 2020-11-04 Delaware 10 25534 712
## 13553 2020-11-04 District of Columbia 11 17601 647
## 13554 2020-11-04 Florida 12 821115 16921
## 13555 2020-11-04 Georgia 13 382113 8303
## 13556 2020-11-04 Guam 66 5872 84
## 13557 2020-11-04 Hawaii 15 15591 218
## 13558 2020-11-04 Idaho 16 68791 665
## 13559 2020-11-04 Illinois 17 445537 10239
## 13560 2020-11-04 Indiana 18 194261 4464
## 13561 2020-11-04 Iowa 19 137315 1801
## 13562 2020-11-04 Kansas 20 93967 1087
## 13563 2020-11-04 Kentucky 21 115426 1593
## 13564 2020-11-04 Louisiana 22 190164 5975
## 13565 2020-11-04 Maine 23 7077 150
## 13566 2020-11-04 Maryland 24 149232 4172
## 13567 2020-11-04 Massachusetts 25 163299 10062
## 13568 2020-11-04 Michigan 26 212126 7783
## 13569 2020-11-04 Minnesota 27 160977 2584
## 13570 2020-11-04 Mississippi 28 122275 3397
## 13571 2020-11-04 Missouri 29 201515 3166
## 13572 2020-11-04 Montana 30 36012 404
## 13573 2020-11-04 Nebraska 31 76145 676
## 13574 2020-11-04 Nevada 32 104514 1816
## 13575 2020-11-04 New Hampshire 33 11563 484
## 13576 2020-11-04 New Jersey 34 247057 16391
## 13577 2020-11-04 New Mexico 35 50251 1059
## 13578 2020-11-04 New York 36 520557 33222
## 13579 2020-11-04 North Carolina 37 283280 4535
## 13580 2020-11-04 North Dakota 38 48306 573
## 13581 2020-11-04 Northern Mariana Islands 69 96 2
## 13582 2020-11-04 Ohio 39 230209 5428
## 13583 2020-11-04 Oklahoma 40 127772 1392
## 13584 2020-11-04 Oregon 41 47049 707
## 13585 2020-11-04 Pennsylvania 42 222883 8967
## 13586 2020-11-04 Puerto Rico 72 69020 850
## 13587 2020-11-04 Rhode Island 44 35122 1214
## 13588 2020-11-04 South Carolina 45 180870 3985
## 13589 2020-11-04 South Dakota 46 49791 460
## 13590 2020-11-04 Tennessee 47 265407 3446
## 13591 2020-11-04 Texas 48 984919 18870
## 13592 2020-11-04 Utah 49 121563 625
## 13593 2020-11-04 Vermont 50 2267 58
## 13594 2020-11-04 Virgin Islands 78 1388 23
## 13595 2020-11-04 Virginia 51 185836 3677
## 13596 2020-11-04 Washington 53 117091 2526
## 13597 2020-11-04 West Virginia 54 25987 472
## 13598 2020-11-04 Wisconsin 55 257365 2237
## 13599 2020-11-04 Wyoming 56 15044 105
## 13600 2020-11-05 Alabama 1 199158 3026
## 13601 2020-11-05 Alaska 2 18064 79
## 13602 2020-11-05 Arizona 4 252843 6087
## 13603 2020-11-05 Arkansas 5 117360 2037
## 13604 2020-11-05 California 6 960905 17866
## 13605 2020-11-05 Colorado 8 122170 2383
## 13606 2020-11-05 Connecticut 9 77060 4656
## 13607 2020-11-05 Delaware 10 25753 716
## 13608 2020-11-05 District of Columbia 11 17682 650
## 13609 2020-11-05 Florida 12 827372 16960
## 13610 2020-11-05 Georgia 13 384531 8359
## 13611 2020-11-05 Guam 66 5973 84
## 13612 2020-11-05 Hawaii 15 15683 218
## 13613 2020-11-05 Idaho 16 70005 673
## 13614 2020-11-05 Illinois 17 455528 10334
## 13615 2020-11-05 Indiana 18 198684 4511
## 13616 2020-11-05 Iowa 19 142795 1814
## 13617 2020-11-05 Kansas 20 94427 1087
## 13618 2020-11-05 Kentucky 21 117654 1611
## 13619 2020-11-05 Louisiana 22 190845 5995
## 13620 2020-11-05 Maine 23 7260 150
## 13621 2020-11-05 Maryland 24 150424 4182
## 13622 2020-11-05 Massachusetts 25 165161 10085
## 13623 2020-11-05 Michigan 26 218136 7833
## 13624 2020-11-05 Minnesota 27 164919 2609
## 13625 2020-11-05 Mississippi 28 123887 3405
## 13626 2020-11-05 Missouri 29 205036 3197
## 13627 2020-11-05 Montana 30 37024 409
## 13628 2020-11-05 Nebraska 31 78061 681
## 13629 2020-11-05 Nevada 32 105706 1825
## 13630 2020-11-05 New Hampshire 33 11808 486
## 13631 2020-11-05 New Jersey 34 249019 16403
## 13632 2020-11-05 New Mexico 35 51110 1082
## 13633 2020-11-05 New York 36 523559 33247
## 13634 2020-11-05 North Carolina 37 286210 4572
## 13635 2020-11-05 North Dakota 38 49842 601
## 13636 2020-11-05 Northern Mariana Islands 69 96 2
## 13637 2020-11-05 Ohio 39 235170 5461
## 13638 2020-11-05 Oklahoma 40 129873 1413
## 13639 2020-11-05 Oregon 41 47839 710
## 13640 2020-11-05 Pennsylvania 42 225698 9009
## 13641 2020-11-05 Puerto Rico 72 69416 855
## 13642 2020-11-05 Rhode Island 44 35750 1222
## 13643 2020-11-05 South Carolina 45 181639 3992
## 13644 2020-11-05 South Dakota 46 51151 482
## 13645 2020-11-05 Tennessee 47 267557 3474
## 13646 2020-11-05 Texas 48 993894 19000
## 13647 2020-11-05 Utah 49 124366 632
## 13648 2020-11-05 Vermont 50 2303 58
## 13649 2020-11-05 Virgin Islands 78 1388 23
## 13650 2020-11-05 Virginia 51 187202 3688
## 13651 2020-11-05 Washington 53 118459 2542
## 13652 2020-11-05 West Virginia 54 26547 480
## 13653 2020-11-05 Wisconsin 55 263640 2273
## 13654 2020-11-05 Wyoming 56 15409 105
## 13655 2020-11-06 Alabama 1 200714 3049
## 13656 2020-11-06 Alaska 2 18589 79
## 13657 2020-11-06 Arizona 4 254961 6111
## 13658 2020-11-06 Arkansas 5 119230 2056
## 13659 2020-11-06 California 6 967618 17939
## 13660 2020-11-06 Colorado 8 125397 2404
## 13661 2020-11-06 Connecticut 9 78125 4671
## 13662 2020-11-06 Delaware 10 26035 716
## 13663 2020-11-06 District of Columbia 11 17792 652
## 13664 2020-11-06 Florida 12 832617 17013
## 13665 2020-11-06 Georgia 13 387202 8389
## 13666 2020-11-06 Guam 66 6046 89
## 13667 2020-11-06 Hawaii 15 15816 218
## 13668 2020-11-06 Idaho 16 71496 685
## 13669 2020-11-06 Illinois 17 466884 10412
## 13670 2020-11-06 Indiana 18 203332 4547
## 13671 2020-11-06 Iowa 19 146267 1828
## 13672 2020-11-06 Kansas 20 99605 1172
## 13673 2020-11-06 Kentucky 21 119952 1621
## 13674 2020-11-06 Louisiana 22 191715 6016
## 13675 2020-11-06 Maine 23 7444 150
## 13676 2020-11-06 Maryland 24 151964 4194
## 13677 2020-11-06 Massachusetts 25 167274 10123
## 13678 2020-11-06 Michigan 26 222423 7883
## 13679 2020-11-06 Minnesota 27 170361 2645
## 13680 2020-11-06 Mississippi 28 124854 3419
## 13681 2020-11-06 Missouri 29 210054 3217
## 13682 2020-11-06 Montana 30 38012 420
## 13683 2020-11-06 Nebraska 31 80693 710
## 13684 2020-11-06 Nevada 32 107258 1846
## 13685 2020-11-06 New Hampshire 33 12012 488
## 13686 2020-11-06 New Jersey 34 251180 16416
## 13687 2020-11-06 New Mexico 35 52394 1088
## 13688 2020-11-06 New York 36 526767 33267
## 13689 2020-11-06 North Carolina 37 289124 4608
## 13690 2020-11-06 North Dakota 38 51607 618
## 13691 2020-11-06 Northern Mariana Islands 69 98 2
## 13692 2020-11-06 Ohio 39 240178 5494
## 13693 2020-11-06 Oklahoma 40 131751 1429
## 13694 2020-11-06 Oregon 41 48608 716
## 13695 2020-11-06 Pennsylvania 42 229346 9052
## 13696 2020-11-06 Puerto Rico 72 70519 862
## 13697 2020-11-06 Rhode Island 44 36380 1224
## 13698 2020-11-06 South Carolina 45 182872 4005
## 13699 2020-11-06 South Dakota 46 52639 510
## 13700 2020-11-06 Tennessee 47 269292 3508
## 13701 2020-11-06 Texas 48 1003908 19125
## 13702 2020-11-06 Utah 49 127294 649
## 13703 2020-11-06 Vermont 50 2326 58
## 13704 2020-11-06 Virgin Islands 78 1390 23
## 13705 2020-11-06 Virginia 51 188770 3682
## 13706 2020-11-06 Washington 53 120123 2552
## 13707 2020-11-06 West Virginia 54 27087 487
## 13708 2020-11-06 Wisconsin 55 270074 2340
## 13709 2020-11-06 Wyoming 56 16405 105
## 13710 2020-11-07 Alabama 1 202482 3082
## 13711 2020-11-07 Alaska 2 19194 79
## 13712 2020-11-07 Arizona 4 257384 6147
## 13713 2020-11-07 Arkansas 5 120828 2068
## 13714 2020-11-07 California 6 972821 17964
## 13715 2020-11-07 Colorado 8 128611 2417
## 13716 2020-11-07 Connecticut 9 78125 4671
## 13717 2020-11-07 Delaware 10 26258 716
## 13718 2020-11-07 District of Columbia 11 17891 654
## 13719 2020-11-07 Florida 12 837069 17099
## 13720 2020-11-07 Georgia 13 389257 8427
## 13721 2020-11-07 Guam 66 6046 89
## 13722 2020-11-07 Hawaii 15 15939 219
## 13723 2020-11-07 Idaho 16 72528 685
## 13724 2020-11-07 Illinois 17 479061 10498
## 13725 2020-11-07 Indiana 18 208243 4592
## 13726 2020-11-07 Iowa 19 150639 1842
## 13727 2020-11-07 Kansas 20 99671 1166
## 13728 2020-11-07 Kentucky 21 122021 1640
## 13729 2020-11-07 Louisiana 22 191715 6016
## 13730 2020-11-07 Maine 23 7603 152
## 13731 2020-11-07 Maryland 24 153198 4201
## 13732 2020-11-07 Massachusetts 25 169576 10146
## 13733 2020-11-07 Michigan 26 228706 7943
## 13734 2020-11-07 Minnesota 27 175008 2679
## 13735 2020-11-07 Mississippi 28 125885 3433
## 13736 2020-11-07 Missouri 29 213645 3235
## 13737 2020-11-07 Montana 30 38948 445
## 13738 2020-11-07 Nebraska 31 82395 715
## 13739 2020-11-07 Nevada 32 109326 1851
## 13740 2020-11-07 New Hampshire 33 12241 489
## 13741 2020-11-07 New Jersey 34 254382 16425
## 13742 2020-11-07 New Mexico 35 53671 1104
## 13743 2020-11-07 New York 36 530354 33287
## 13744 2020-11-07 North Carolina 37 291563 4629
## 13745 2020-11-07 North Dakota 38 53209 633
## 13746 2020-11-07 Northern Mariana Islands 69 98 2
## 13747 2020-11-07 Ohio 39 245727 5506
## 13748 2020-11-07 Oklahoma 40 136258 1438
## 13749 2020-11-07 Oregon 41 49587 729
## 13750 2020-11-07 Pennsylvania 42 232582 9089
## 13751 2020-11-07 Puerto Rico 72 71532 862
## 13752 2020-11-07 Rhode Island 44 36380 1224
## 13753 2020-11-07 South Carolina 45 184742 4015
## 13754 2020-11-07 South Dakota 46 53976 523
## 13755 2020-11-07 Tennessee 47 273603 3556
## 13756 2020-11-07 Texas 48 1009837 19219
## 13757 2020-11-07 Utah 49 130238 658
## 13758 2020-11-07 Vermont 50 2347 59
## 13759 2020-11-07 Virgin Islands 78 1405 23
## 13760 2020-11-07 Virginia 51 190873 3704
## 13761 2020-11-07 Washington 53 121220 2552
## 13762 2020-11-07 West Virginia 54 27742 502
## 13763 2020-11-07 Wisconsin 55 277568 2385
## 13764 2020-11-07 Wyoming 56 16597 105
## 13765 2020-11-08 Alabama 1 203687 3084
## 13766 2020-11-08 Alaska 2 19712 79
## 13767 2020-11-08 Arizona 4 259299 6164
## 13768 2020-11-08 Arkansas 5 121866 2085
## 13769 2020-11-08 California 6 978861 17975
## 13770 2020-11-08 Colorado 8 131870 2421
## 13771 2020-11-08 Connecticut 9 78125 4671
## 13772 2020-11-08 Delaware 10 26603 718
## 13773 2020-11-08 District of Columbia 11 18001 654
## 13774 2020-11-08 Florida 12 843889 17120
## 13775 2020-11-08 Georgia 13 390617 8428
## 13776 2020-11-08 Guam 66 6046 89
## 13777 2020-11-08 Hawaii 15 16066 220
## 13778 2020-11-08 Idaho 16 73212 691
## 13779 2020-11-08 Illinois 17 488980 10548
## 13780 2020-11-08 Indiana 18 212895 4629
## 13781 2020-11-08 Iowa 19 155583 1845
## 13782 2020-11-08 Kansas 20 99805 1166
## 13783 2020-11-08 Kentucky 21 123195 1641
## 13784 2020-11-08 Louisiana 22 192981 6036
## 13785 2020-11-08 Maine 23 7693 152
## 13786 2020-11-08 Maryland 24 154451 4212
## 13787 2020-11-08 Massachusetts 25 171399 10166
## 13788 2020-11-08 Michigan 26 229085 7944
## 13789 2020-11-08 Minnesota 27 180916 2710
## 13790 2020-11-08 Mississippi 28 126689 3443
## 13791 2020-11-08 Missouri 29 216654 3238
## 13792 2020-11-08 Montana 30 39679 456
## 13793 2020-11-08 Nebraska 31 83969 715
## 13794 2020-11-08 Nevada 32 110308 1852
## 13795 2020-11-08 New Hampshire 33 12488 489
## 13796 2020-11-08 New Jersey 34 256395 16429
## 13797 2020-11-08 New Mexico 35 54881 1118
## 13798 2020-11-08 New York 36 533784 33314
## 13799 2020-11-08 North Carolina 37 293431 4630
## 13800 2020-11-08 North Dakota 38 54310 644
## 13801 2020-11-08 Northern Mariana Islands 69 98 2
## 13802 2020-11-08 Ohio 39 250268 5517
## 13803 2020-11-08 Oklahoma 40 136258 1438
## 13804 2020-11-08 Oregon 41 50448 730
## 13805 2020-11-08 Pennsylvania 42 235162 9093
## 13806 2020-11-08 Puerto Rico 72 71625 872
## 13807 2020-11-08 Rhode Island 44 36380 1224
## 13808 2020-11-08 South Carolina 45 185688 4036
## 13809 2020-11-08 South Dakota 46 55404 536
## 13810 2020-11-08 Tennessee 47 277073 3561
## 13811 2020-11-08 Texas 48 1016772 19256
## 13812 2020-11-08 Utah 49 132621 659
## 13813 2020-11-08 Vermont 50 2392 59
## 13814 2020-11-08 Virgin Islands 78 1405 23
## 13815 2020-11-08 Virginia 51 192175 3707
## 13816 2020-11-08 Washington 53 122310 2552
## 13817 2020-11-08 West Virginia 54 28404 502
## 13818 2020-11-08 Wisconsin 55 281910 2396
## 13819 2020-11-08 Wyoming 56 17310 114
## 13820 2020-11-09 Alabama 1 204857 3084
## 13821 2020-11-09 Alaska 2 20185 79
## 13822 2020-11-09 Arizona 4 260646 6164
## 13823 2020-11-09 Arkansas 5 122811 2108
## 13824 2020-11-09 California 6 985623 18035
## 13825 2020-11-09 Colorado 8 135747 2438
## 13826 2020-11-09 Connecticut 9 81463 4698
## 13827 2020-11-09 Delaware 10 26908 719
## 13828 2020-11-09 District of Columbia 11 18087 655
## 13829 2020-11-09 Florida 12 847813 17178
## 13830 2020-11-09 Georgia 13 392246 8457
## 13831 2020-11-09 Guam 66 6442 91
## 13832 2020-11-09 Hawaii 15 16124 220
## 13833 2020-11-09 Idaho 16 74713 704
## 13834 2020-11-09 Illinois 17 500015 10577
## 13835 2020-11-09 Indiana 18 217028 4664
## 13836 2020-11-09 Iowa 19 159910 1872
## 13837 2020-11-09 Kansas 20 105298 1181
## 13838 2020-11-09 Kentucky 21 125332 1655
## 13839 2020-11-09 Louisiana 22 193372 6048
## 13840 2020-11-09 Maine 23 7888 153
## 13841 2020-11-09 Maryland 24 155824 4221
## 13842 2020-11-09 Massachusetts 25 172727 10180
## 13843 2020-11-09 Michigan 26 238136 8008
## 13844 2020-11-09 Minnesota 27 184842 2729
## 13845 2020-11-09 Mississippi 28 127205 3443
## 13846 2020-11-09 Missouri 29 221874 3241
## 13847 2020-11-09 Montana 30 40118 463
## 13848 2020-11-09 Nebraska 31 85551 719
## 13849 2020-11-09 Nevada 32 111323 1853
## 13850 2020-11-09 New Hampshire 33 12699 489
## 13851 2020-11-09 New Jersey 34 258453 16440
## 13852 2020-11-09 New Mexico 35 56289 1130
## 13853 2020-11-09 New York 36 536933 33343
## 13854 2020-11-09 North Carolina 37 295105 4638
## 13855 2020-11-09 North Dakota 38 55463 649
## 13856 2020-11-09 Northern Mariana Islands 69 100 2
## 13857 2020-11-09 Ohio 39 254974 5524
## 13858 2020-11-09 Oklahoma 40 138455 1444
## 13859 2020-11-09 Oregon 41 51155 738
## 13860 2020-11-09 Pennsylvania 42 239724 9098
## 13861 2020-11-09 Puerto Rico 72 72101 882
## 13862 2020-11-09 Rhode Island 44 38009 1233
## 13863 2020-11-09 South Carolina 45 186391 4041
## 13864 2020-11-09 South Dakota 46 56311 537
## 13865 2020-11-09 Tennessee 47 282746 3577
## 13866 2020-11-09 Texas 48 1026570 19298
## 13867 2020-11-09 Utah 49 134868 661
## 13868 2020-11-09 Vermont 50 2415 59
## 13869 2020-11-09 Virgin Islands 78 1405 23
## 13870 2020-11-09 Virginia 51 193477 3713
## 13871 2020-11-09 Washington 53 124560 2577
## 13872 2020-11-09 West Virginia 54 28805 530
## 13873 2020-11-09 Wisconsin 55 286446 2421
## 13874 2020-11-09 Wyoming 56 18010 114
## 13875 2020-11-10 Alabama 1 206567 3120
## 13876 2020-11-10 Alaska 2 20715 87
## 13877 2020-11-10 Arizona 4 263445 6198
## 13878 2020-11-10 Arkansas 5 124235 2112
## 13879 2020-11-10 California 6 994366 18073
## 13880 2020-11-10 Colorado 8 139246 2469
## 13881 2020-11-10 Connecticut 9 82987 4707
## 13882 2020-11-10 Delaware 10 27112 722
## 13883 2020-11-10 District of Columbia 11 18173 657
## 13884 2020-11-10 Florida 12 852166 17247
## 13885 2020-11-10 Georgia 13 396498 8507
## 13886 2020-11-10 Guam 66 6623 92
## 13887 2020-11-10 Hawaii 15 16193 221
## 13888 2020-11-10 Idaho 16 76010 720
## 13889 2020-11-10 Illinois 17 512688 10658
## 13890 2020-11-10 Indiana 18 221894 4731
## 13891 2020-11-10 Iowa 19 163827 1898
## 13892 2020-11-10 Kansas 20 105760 1181
## 13893 2020-11-10 Kentucky 21 127472 1674
## 13894 2020-11-10 Louisiana 22 194702 6058
## 13895 2020-11-10 Maine 23 8060 156
## 13896 2020-11-10 Maryland 24 157149 4233
## 13897 2020-11-10 Massachusetts 25 174881 10201
## 13898 2020-11-10 Michigan 26 245005 8095
## 13899 2020-11-10 Minnesota 27 189735 2752
## 13900 2020-11-10 Mississippi 28 128138 3480
## 13901 2020-11-10 Missouri 29 226372 3375
## 13902 2020-11-10 Montana 30 41219 468
## 13903 2020-11-10 Nebraska 31 87743 745
## 13904 2020-11-10 Nevada 32 112602 1863
## 13905 2020-11-10 New Hampshire 33 12919 489
## 13906 2020-11-10 New Jersey 34 262230 16461
## 13907 2020-11-10 New Mexico 35 57547 1144
## 13908 2020-11-10 New York 36 540897 33373
## 13909 2020-11-10 North Carolina 37 298089 4685
## 13910 2020-11-10 North Dakota 38 56357 679
## 13911 2020-11-10 Northern Mariana Islands 69 100 2
## 13912 2020-11-10 Ohio 39 261482 5547
## 13913 2020-11-10 Oklahoma 40 140157 1451
## 13914 2020-11-10 Oregon 41 51909 741
## 13915 2020-11-10 Pennsylvania 42 244046 9156
## 13916 2020-11-10 Puerto Rico 72 72310 889
## 13917 2020-11-10 Rhode Island 44 38798 1237
## 13918 2020-11-10 South Carolina 45 187738 4062
## 13919 2020-11-10 South Dakota 46 57334 540
## 13920 2020-11-10 Tennessee 47 284725 3639
## 13921 2020-11-10 Texas 48 1038214 19423
## 13922 2020-11-10 Utah 49 137523 672
## 13923 2020-11-10 Vermont 50 2462 59
## 13924 2020-11-10 Virgin Islands 78 1413 23
## 13925 2020-11-10 Virginia 51 194912 3726
## 13926 2020-11-10 Washington 53 126091 2594
## 13927 2020-11-10 West Virginia 54 29316 546
## 13928 2020-11-10 Wisconsin 55 293862 2497
## 13929 2020-11-10 Wyoming 56 19242 127
## 13930 2020-11-11 Alabama 1 208637 3201
## 13931 2020-11-11 Alaska 2 21211 90
## 13932 2020-11-11 Arizona 4 265195 6228
## 13933 2020-11-11 Arkansas 5 126197 2126
## 13934 2020-11-11 California 6 999516 18109
## 13935 2020-11-11 Colorado 8 143553 2481
## 13936 2020-11-11 Connecticut 9 84741 4716
## 13937 2020-11-11 Delaware 10 27342 724
## 13938 2020-11-11 District of Columbia 11 18379 657
## 13939 2020-11-11 Florida 12 858004 17299
## 13940 2020-11-11 Georgia 13 398769 8582
## 13941 2020-11-11 Guam 66 6724 92
## 13942 2020-11-11 Hawaii 15 16309 221
## 13943 2020-11-11 Idaho 16 77536 738
## 13944 2020-11-11 Illinois 17 525072 10805
## 13945 2020-11-11 Indiana 18 226935 4762
## 13946 2020-11-11 Iowa 19 168457 1927
## 13947 2020-11-11 Kansas 20 110977 1215
## 13948 2020-11-11 Kentucky 21 130308 1689
## 13949 2020-11-11 Louisiana 22 194702 6058
## 13950 2020-11-11 Maine 23 8202 158
## 13951 2020-11-11 Maryland 24 158836 4249
## 13952 2020-11-11 Massachusetts 25 177541 10222
## 13953 2020-11-11 Michigan 26 251499 8137
## 13954 2020-11-11 Minnesota 27 194626 2810
## 13955 2020-11-11 Mississippi 28 129394 3497
## 13956 2020-11-11 Missouri 29 230003 3411
## 13957 2020-11-11 Montana 30 42132 475
## 13958 2020-11-11 Nebraska 31 89977 745
## 13959 2020-11-11 Nevada 32 113856 1877
## 13960 2020-11-11 New Hampshire 33 13148 492
## 13961 2020-11-11 New Jersey 34 265295 16476
## 13962 2020-11-11 New Mexico 35 59034 1158
## 13963 2020-11-11 New York 36 545718 33398
## 13964 2020-11-11 North Carolina 37 300725 4723
## 13965 2020-11-11 North Dakota 38 57378 691
## 13966 2020-11-11 Northern Mariana Islands 69 100 2
## 13967 2020-11-11 Ohio 39 267356 5623
## 13968 2020-11-11 Oklahoma 40 142334 1470
## 13969 2020-11-11 Oregon 41 52770 746
## 13970 2020-11-11 Pennsylvania 42 248144 9217
## 13971 2020-11-11 Puerto Rico 72 72735 901
## 13972 2020-11-11 Rhode Island 44 39776 1243
## 13973 2020-11-11 South Carolina 45 188995 4076
## 13974 2020-11-11 South Dakota 46 58696 567
## 13975 2020-11-11 Tennessee 47 288311 3727
## 13976 2020-11-11 Texas 48 1051071 19544
## 13977 2020-11-11 Utah 49 139815 678
## 13978 2020-11-11 Vermont 50 2535 59
## 13979 2020-11-11 Virgin Islands 78 1413 23
## 13980 2020-11-11 Virginia 51 196506 3741
## 13981 2020-11-11 Washington 53 126886 2595
## 13982 2020-11-11 West Virginia 54 30201 553
## 13983 2020-11-11 Wisconsin 55 301349 2562
## 13984 2020-11-11 Wyoming 56 19374 127
## 13985 2020-11-12 Alabama 1 210637 3213
## 13986 2020-11-12 Alaska 2 21689 90
## 13987 2020-11-12 Arizona 4 266644 6240
## 13988 2020-11-12 Arkansas 5 128006 2144
## 13989 2020-11-12 California 6 1009216 18141
## 13990 2020-11-12 Colorado 8 149262 2512
## 13991 2020-11-12 Connecticut 9 85899 4726
## 13992 2020-11-12 Delaware 10 27546 732
## 13993 2020-11-12 District of Columbia 11 18507 657
## 13994 2020-11-12 Florida 12 863611 17371
## 13995 2020-11-12 Georgia 13 401750 8655
## 13996 2020-11-12 Guam 66 6819 92
## 13997 2020-11-12 Hawaii 15 16403 221
## 13998 2020-11-12 Idaho 16 78877 753
## 13999 2020-11-12 Illinois 17 537860 10855
## 14000 2020-11-12 Indiana 18 233540 4813
## 14001 2020-11-12 Iowa 19 173401 1947
## 14002 2020-11-12 Kansas 20 111503 1215
## 14003 2020-11-12 Kentucky 21 132686 1702
## 14004 2020-11-12 Louisiana 22 198531 6097
## 14005 2020-11-12 Maine 23 8395 159
## 14006 2020-11-12 Maryland 24 160311 4261
## 14007 2020-11-12 Massachusetts 25 180189 10242
## 14008 2020-11-12 Michigan 26 258973 8187
## 14009 2020-11-12 Minnesota 27 201851 2849
## 14010 2020-11-12 Mississippi 28 130665 3514
## 14011 2020-11-12 Missouri 29 235341 3441
## 14012 2020-11-12 Montana 30 43084 478
## 14013 2020-11-12 Nebraska 31 92737 772
## 14014 2020-11-12 Nevada 32 115360 1880
## 14015 2020-11-12 New Hampshire 33 13470 495
## 14016 2020-11-12 New Jersey 34 268787 16495
## 14017 2020-11-12 New Mexico 35 60776 1176
## 14018 2020-11-12 New York 36 550516 33424
## 14019 2020-11-12 North Carolina 37 303931 4730
## 14020 2020-11-12 North Dakota 38 59179 703
## 14021 2020-11-12 Northern Mariana Islands 69 100 2
## 14022 2020-11-12 Ohio 39 274457 5658
## 14023 2020-11-12 Oklahoma 40 144691 1481
## 14024 2020-11-12 Oregon 41 53879 748
## 14025 2020-11-12 Pennsylvania 42 254167 9272
## 14026 2020-11-12 Puerto Rico 72 74067 909
## 14027 2020-11-12 Rhode Island 44 40764 1250
## 14028 2020-11-12 South Carolina 45 190490 4084
## 14029 2020-11-12 South Dakota 46 60716 567
## 14030 2020-11-12 Tennessee 47 291482 3751
## 14031 2020-11-12 Texas 48 1060798 19705
## 14032 2020-11-12 Utah 49 143639 689
## 14033 2020-11-12 Vermont 50 2651 59
## 14034 2020-11-12 Virgin Islands 78 1413 23
## 14035 2020-11-12 Virginia 51 198027 3758
## 14036 2020-11-12 Washington 53 129672 2619
## 14037 2020-11-12 West Virginia 54 30897 555
## 14038 2020-11-12 Wisconsin 55 309605 2626
## 14039 2020-11-12 Wyoming 56 20479 127
## 14040 2020-11-13 Alabama 1 213617 3231
## 14041 2020-11-13 Alaska 2 22282 91
## 14042 2020-11-13 Arizona 4 270596 6257
## 14043 2020-11-13 Arkansas 5 130318 2148
## 14044 2020-11-13 California 6 1019080 18218
## 14045 2020-11-13 Colorado 8 155761 2541
## 14046 2020-11-13 Connecticut 9 88645 4737
## 14047 2020-11-13 Delaware 10 28016 734
## 14048 2020-11-13 District of Columbia 11 18666 657
## 14049 2020-11-13 Florida 12 870544 17444
## 14050 2020-11-13 Georgia 13 404577 8678
## 14051 2020-11-13 Guam 66 6893 93
## 14052 2020-11-13 Hawaii 15 16514 221
## 14053 2020-11-13 Idaho 16 80440 756
## 14054 2020-11-13 Illinois 17 553083 10907
## 14055 2020-11-13 Indiana 18 239139 4863
## 14056 2020-11-13 Iowa 19 178890 1972
## 14057 2020-11-13 Kansas 20 117282 1256
## 14058 2020-11-13 Kentucky 21 135855 1729
## 14059 2020-11-13 Louisiana 22 201981 6121
## 14060 2020-11-13 Maine 23 8639 162
## 14061 2020-11-13 Maryland 24 162181 4273
## 14062 2020-11-13 Massachusetts 25 183095 10265
## 14063 2020-11-13 Michigan 26 268072 8312
## 14064 2020-11-13 Minnesota 27 207395 2895
## 14065 2020-11-13 Mississippi 28 131970 3519
## 14066 2020-11-13 Missouri 29 241236 3452
## 14067 2020-11-13 Montana 30 44297 483
## 14068 2020-11-13 Nebraska 31 95010 794
## 14069 2020-11-13 Nevada 32 117322 1896
## 14070 2020-11-13 New Hampshire 33 13929 498
## 14071 2020-11-13 New Jersey 34 272184 16522
## 14072 2020-11-13 New Mexico 35 62006 1198
## 14073 2020-11-13 New York 36 555917 33452
## 14074 2020-11-13 North Carolina 37 306498 4749
## 14075 2020-11-13 North Dakota 38 60608 713
## 14076 2020-11-13 Northern Mariana Islands 69 100 2
## 14077 2020-11-13 Ohio 39 282528 5700
## 14078 2020-11-13 Oklahoma 40 147358 1493
## 14079 2020-11-13 Oregon 41 54937 759
## 14080 2020-11-13 Pennsylvania 42 260001 9306
## 14081 2020-11-13 Puerto Rico 72 74734 914
## 14082 2020-11-13 Rhode Island 44 41529 1254
## 14083 2020-11-13 South Carolina 45 192101 4101
## 14084 2020-11-13 South Dakota 46 62327 568
## 14085 2020-11-13 Tennessee 47 295135 3814
## 14086 2020-11-13 Texas 48 1073382 19917
## 14087 2020-11-13 Utah 49 146155 703
## 14088 2020-11-13 Vermont 50 2743 59
## 14089 2020-11-13 Virgin Islands 78 1426 23
## 14090 2020-11-13 Virginia 51 199262 3785
## 14091 2020-11-13 Washington 53 132183 2634
## 14092 2020-11-13 West Virginia 54 31639 565
## 14093 2020-11-13 Wisconsin 55 318023 2694
## 14094 2020-11-13 Wyoming 56 21341 127
## 14095 2020-11-14 Alabama 1 215843 3246
## 14096 2020-11-14 Alaska 2 23029 92
## 14097 2020-11-14 Arizona 4 273400 6300
## 14098 2020-11-14 Arkansas 5 132166 2159
## 14099 2020-11-14 California 6 1027044 18254
## 14100 2020-11-14 Colorado 8 160459 2554
## 14101 2020-11-14 Connecticut 9 88645 4737
## 14102 2020-11-14 Delaware 10 28395 736
## 14103 2020-11-14 District of Columbia 11 18814 658
## 14104 2020-11-14 Florida 12 875088 17488
## 14105 2020-11-14 Georgia 13 407596 8729
## 14106 2020-11-14 Guam 66 6893 93
## 14107 2020-11-14 Hawaii 15 16619 221
## 14108 2020-11-14 Idaho 16 81625 763
## 14109 2020-11-14 Illinois 17 564086 11098
## 14110 2020-11-14 Indiana 18 247466 4888
## 14111 2020-11-14 Iowa 19 183557 1985
## 14112 2020-11-14 Kansas 20 117728 1256
## 14113 2020-11-14 Kentucky 21 138854 1739
## 14114 2020-11-14 Louisiana 22 201981 6121
## 14115 2020-11-14 Maine 23 8791 163
## 14116 2020-11-14 Maryland 24 164239 4293
## 14117 2020-11-14 Massachusetts 25 186142 10293
## 14118 2020-11-14 Michigan 26 275393 8375
## 14119 2020-11-14 Minnesota 27 216084 2930
## 14120 2020-11-14 Mississippi 28 133340 3540
## 14121 2020-11-14 Missouri 29 248400 3463
## 14122 2020-11-14 Montana 30 45919 519
## 14123 2020-11-14 Nebraska 31 96834 795
## 14124 2020-11-14 Nevada 32 119228 1908
## 14125 2020-11-14 New Hampshire 33 14311 499
## 14126 2020-11-14 New Jersey 34 276537 16548
## 14127 2020-11-14 New Mexico 35 63171 1208
## 14128 2020-11-14 New York 36 561308 33477
## 14129 2020-11-14 North Carolina 37 309703 4783
## 14130 2020-11-14 North Dakota 38 62878 732
## 14131 2020-11-14 Northern Mariana Islands 69 100 2
## 14132 2020-11-14 Ohio 39 290243 5714
## 14133 2020-11-14 Oklahoma 40 150205 1516
## 14134 2020-11-14 Oregon 41 56018 760
## 14135 2020-11-14 Pennsylvania 42 264396 9353
## 14136 2020-11-14 Puerto Rico 72 75387 921
## 14137 2020-11-14 Rhode Island 44 41529 1254
## 14138 2020-11-14 South Carolina 45 194014 4110
## 14139 2020-11-14 South Dakota 46 64182 621
## 14140 2020-11-14 Tennessee 47 299597 3839
## 14141 2020-11-14 Texas 48 1083132 20035
## 14142 2020-11-14 Utah 49 151141 712
## 14143 2020-11-14 Vermont 50 2843 59
## 14144 2020-11-14 Virgin Islands 78 1434 23
## 14145 2020-11-14 Virginia 51 200799 3799
## 14146 2020-11-14 Washington 53 133612 2638
## 14147 2020-11-14 West Virginia 54 32792 574
## 14148 2020-11-14 Wisconsin 55 323604 2748
## 14149 2020-11-14 Wyoming 56 21881 144
## 14150 2020-11-15 Alabama 1 217822 3248
## 14151 2020-11-15 Alaska 2 23688 92
## 14152 2020-11-15 Arizona 4 275523 6302
## 14153 2020-11-15 Arkansas 5 133040 2183
## 14154 2020-11-15 California 6 1036008 18265
## 14155 2020-11-15 Colorado 8 164408 2574
## 14156 2020-11-15 Connecticut 9 88645 4737
## 14157 2020-11-15 Delaware 10 28803 736
## 14158 2020-11-15 District of Columbia 11 18977 660
## 14159 2020-11-15 Florida 12 885193 17517
## 14160 2020-11-15 Georgia 13 409504 8730
## 14161 2020-11-15 Guam 66 6893 93
## 14162 2020-11-15 Hawaii 15 16619 221
## 14163 2020-11-15 Idaho 16 82545 763
## 14164 2020-11-15 Illinois 17 574722 11170
## 14165 2020-11-15 Indiana 18 254172 4910
## 14166 2020-11-15 Iowa 19 186314 1989
## 14167 2020-11-15 Kansas 20 117851 1256
## 14168 2020-11-15 Kentucky 21 140267 1742
## 14169 2020-11-15 Louisiana 22 204513 6132
## 14170 2020-11-15 Maine 23 8944 165
## 14171 2020-11-15 Maryland 24 166317 4302
## 14172 2020-11-15 Massachusetts 25 188275 10329
## 14173 2020-11-15 Michigan 26 275892 8378
## 14174 2020-11-15 Minnesota 27 223637 2961
## 14175 2020-11-15 Mississippi 28 134309 3543
## 14176 2020-11-15 Missouri 29 249608 3463
## 14177 2020-11-15 Montana 30 47158 525
## 14178 2020-11-15 Nebraska 31 98161 796
## 14179 2020-11-15 Nevada 32 120744 1913
## 14180 2020-11-15 New Hampshire 33 14671 499
## 14181 2020-11-15 New Jersey 34 281075 16566
## 14182 2020-11-15 New Mexico 35 64201 1215
## 14183 2020-11-15 New York 36 564952 33508
## 14184 2020-11-15 North Carolina 37 312406 4830
## 14185 2020-11-15 North Dakota 38 63802 742
## 14186 2020-11-15 Northern Mariana Islands 69 100 2
## 14187 2020-11-15 Ohio 39 298096 5722
## 14188 2020-11-15 Oklahoma 40 154128 1528
## 14189 2020-11-15 Oregon 41 56880 762
## 14190 2020-11-15 Pennsylvania 42 269043 9385
## 14191 2020-11-15 Puerto Rico 72 76094 935
## 14192 2020-11-15 Rhode Island 44 41529 1254
## 14193 2020-11-15 South Carolina 45 195507 4112
## 14194 2020-11-15 South Dakota 46 65381 644
## 14195 2020-11-15 Tennessee 47 305211 3856
## 14196 2020-11-15 Texas 48 1090500 20110
## 14197 2020-11-15 Utah 49 153808 718
## 14198 2020-11-15 Vermont 50 2889 59
## 14199 2020-11-15 Virgin Islands 78 1434 23
## 14200 2020-11-15 Virginia 51 201960 3800
## 14201 2020-11-15 Washington 53 135365 2638
## 14202 2020-11-15 West Virginia 54 33659 582
## 14203 2020-11-15 Wisconsin 55 329924 2759
## 14204 2020-11-15 Wyoming 56 22494 144
## 14205 2020-11-16 Alabama 1 219232 3249
## 14206 2020-11-16 Alaska 2 24268 92
## 14207 2020-11-16 Arizona 4 277179 6302
## 14208 2020-11-16 Arkansas 5 134348 2225
## 14209 2020-11-16 California 6 1047390 18304
## 14210 2020-11-16 Colorado 8 168890 2605
## 14211 2020-11-16 Connecticut 9 93284 4759
## 14212 2020-11-16 Delaware 10 29200 736
## 14213 2020-11-16 District of Columbia 11 19064 660
## 14214 2020-11-16 Florida 12 889856 17558
## 14215 2020-11-16 Georgia 13 410581 8740
## 14216 2020-11-16 Guam 66 7144 99
## 14217 2020-11-16 Hawaii 15 16711 221
## 14218 2020-11-16 Idaho 16 83906 773
## 14219 2020-11-16 Illinois 17 586569 11217
## 14220 2020-11-16 Indiana 18 259318 4936
## 14221 2020-11-16 Iowa 19 189597 2023
## 14222 2020-11-16 Kansas 20 124697 1266
## 14223 2020-11-16 Kentucky 21 142277 1750
## 14224 2020-11-16 Louisiana 22 205059 6139
## 14225 2020-11-16 Maine 23 9117 165
## 14226 2020-11-16 Maryland 24 168041 4309
## 14227 2020-11-16 Massachusetts 25 190439 10340
## 14228 2020-11-16 Michigan 26 288543 8437
## 14229 2020-11-16 Minnesota 27 231074 2973
## 14230 2020-11-16 Mississippi 28 134898 3545
## 14231 2020-11-16 Missouri 29 255942 3485
## 14232 2020-11-16 Montana 30 48101 528
## 14233 2020-11-16 Nebraska 31 101707 810
## 14234 2020-11-16 Nevada 32 122441 1919
## 14235 2020-11-16 New Hampshire 33 15029 500
## 14236 2020-11-16 New Jersey 34 283294 16580
## 14237 2020-11-16 New Mexico 35 65454 1236
## 14238 2020-11-16 New York 36 568450 33540
## 14239 2020-11-16 North Carolina 37 315314 4843
## 14240 2020-11-16 North Dakota 38 64891 749
## 14241 2020-11-16 Northern Mariana Islands 69 102 2
## 14242 2020-11-16 Ohio 39 305364 5742
## 14243 2020-11-16 Oklahoma 40 156857 1538
## 14244 2020-11-16 Oregon 41 57646 772
## 14245 2020-11-16 Pennsylvania 42 275257 9399
## 14246 2020-11-16 Puerto Rico 72 76631 942
## 14247 2020-11-16 Rhode Island 44 43923 1270
## 14248 2020-11-16 South Carolina 45 196617 4143
## 14249 2020-11-16 South Dakota 46 66278 644
## 14250 2020-11-16 Tennessee 47 312710 3884
## 14251 2020-11-16 Texas 48 1101781 20157
## 14252 2020-11-16 Utah 49 155779 725
## 14253 2020-11-16 Vermont 50 3008 59
## 14254 2020-11-16 Virgin Islands 78 1434 23
## 14255 2020-11-16 Virginia 51 204637 3806
## 14256 2020-11-16 Washington 53 138602 2661
## 14257 2020-11-16 West Virginia 54 34460 585
## 14258 2020-11-16 Wisconsin 55 334640 2775
## 14259 2020-11-16 Wyoming 56 23193 144
## 14260 2020-11-17 Alabama 1 220848 3301
## 14261 2020-11-17 Alaska 2 24909 94
## 14262 2020-11-17 Arizona 4 281284 6320
## 14263 2020-11-17 Arkansas 5 135902 2245
## 14264 2020-11-17 California 6 1058123 18360
## 14265 2020-11-17 Colorado 8 173220 2626
## 14266 2020-11-17 Connecticut 9 94986 4771
## 14267 2020-11-17 Delaware 10 29552 739
## 14268 2020-11-17 District of Columbia 11 19309 660
## 14269 2020-11-17 Florida 12 897315 17643
## 14270 2020-11-17 Georgia 13 414821 8778
## 14271 2020-11-17 Guam 66 7203 101
## 14272 2020-11-17 Hawaii 15 16755 221
## 14273 2020-11-17 Idaho 16 85383 803
## 14274 2020-11-17 Illinois 17 599358 11327
## 14275 2020-11-17 Indiana 18 264810 5025
## 14276 2020-11-17 Iowa 19 193196 2064
## 14277 2020-11-17 Kansas 20 125668 1266
## 14278 2020-11-17 Kentucky 21 145220 1787
## 14279 2020-11-17 Louisiana 22 207685 6156
## 14280 2020-11-17 Maine 23 9363 166
## 14281 2020-11-17 Maryland 24 170193 4335
## 14282 2020-11-17 Massachusetts 25 192964 10360
## 14283 2020-11-17 Michigan 26 296436 8513
## 14284 2020-11-17 Minnesota 27 237005 2999
## 14285 2020-11-17 Mississippi 28 135803 3581
## 14286 2020-11-17 Missouri 29 261105 3552
## 14287 2020-11-17 Montana 30 49496 548
## 14288 2020-11-17 Nebraska 31 103805 832
## 14289 2020-11-17 Nevada 32 124082 1946
## 14290 2020-11-17 New Hampshire 33 15303 502
## 14291 2020-11-17 New Jersey 34 287320 16618
## 14292 2020-11-17 New Mexico 35 67559 1264
## 14293 2020-11-17 New York 36 573544 33576
## 14294 2020-11-17 North Carolina 37 318537 4881
## 14295 2020-11-17 North Dakota 38 65973 775
## 14296 2020-11-17 Northern Mariana Islands 69 103 2
## 14297 2020-11-17 Ohio 39 312443 5772
## 14298 2020-11-17 Oklahoma 40 158408 1544
## 14299 2020-11-17 Oregon 41 58570 779
## 14300 2020-11-17 Pennsylvania 42 280978 9433
## 14301 2020-11-17 Puerto Rico 72 77200 951
## 14302 2020-11-17 Rhode Island 44 44528 1278
## 14303 2020-11-17 South Carolina 45 197900 4156
## 14304 2020-11-17 South Dakota 46 67284 644
## 14305 2020-11-17 Tennessee 47 314553 3953
## 14306 2020-11-17 Texas 48 1112676 20278
## 14307 2020-11-17 Utah 49 159006 734
## 14308 2020-11-17 Vermont 50 3104 59
## 14309 2020-11-17 Virgin Islands 78 1450 23
## 14310 2020-11-17 Virginia 51 206762 3835
## 14311 2020-11-17 Washington 53 140923 2686
## 14312 2020-11-17 West Virginia 54 35324 598
## 14313 2020-11-17 Wisconsin 55 342155 2876
## 14314 2020-11-17 Wyoming 56 24453 155
## 14315 2020-11-18 Alabama 1 223486 3347
## 14316 2020-11-18 Alaska 2 25454 94
## 14317 2020-11-18 Arizona 4 284554 6365
## 14318 2020-11-18 Arkansas 5 137617 2275
## 14319 2020-11-18 California 6 1069544 18467
## 14320 2020-11-18 Colorado 8 178224 2669
## 14321 2020-11-18 Connecticut 9 97028 4784
## 14322 2020-11-18 Delaware 10 29755 742
## 14323 2020-11-18 District of Columbia 11 19465 665
## 14324 2020-11-18 Florida 12 905240 17730
## 14325 2020-11-18 Georgia 13 417934 8833
## 14326 2020-11-18 Guam 66 7315 101
## 14327 2020-11-18 Hawaii 15 16817 222
## 14328 2020-11-18 Idaho 16 87020 815
## 14329 2020-11-18 Illinois 17 608056 11488
## 14330 2020-11-18 Indiana 18 270847 5084
## 14331 2020-11-18 Iowa 19 197532 2102
## 14332 2020-11-18 Kansas 20 131051 1326
## 14333 2020-11-18 Kentucky 21 148069 1816
## 14334 2020-11-18 Louisiana 22 209914 6184
## 14335 2020-11-18 Maine 23 9519 170
## 14336 2020-11-18 Maryland 24 172204 4351
## 14337 2020-11-18 Massachusetts 25 195868 10407
## 14338 2020-11-18 Michigan 26 302541 8576
## 14339 2020-11-18 Minnesota 27 242099 3066
## 14340 2020-11-18 Mississippi 28 137396 3601
## 14341 2020-11-18 Missouri 29 266079 3591
## 14342 2020-11-18 Montana 30 50650 568
## 14343 2020-11-18 Nebraska 31 106617 842
## 14344 2020-11-18 Nevada 32 126106 1947
## 14345 2020-11-18 New Hampshire 33 15749 504
## 14346 2020-11-18 New Jersey 34 291374 16655
## 14347 2020-11-18 New Mexico 35 70452 1290
## 14348 2020-11-18 New York 36 578826 33607
## 14349 2020-11-18 North Carolina 37 322258 4927
## 14350 2020-11-18 North Dakota 38 67236 791
## 14351 2020-11-18 Northern Mariana Islands 69 103 2
## 14352 2020-11-18 Ohio 39 318828 5827
## 14353 2020-11-18 Oklahoma 40 161425 1570
## 14354 2020-11-18 Oregon 41 59670 791
## 14355 2020-11-18 Pennsylvania 42 287464 9541
## 14356 2020-11-18 Puerto Rico 72 77525 971
## 14357 2020-11-18 Rhode Island 44 45911 1284
## 14358 2020-11-18 South Carolina 45 199447 4182
## 14359 2020-11-18 South Dakota 46 68671 674
## 14360 2020-11-18 Tennessee 47 319021 4005
## 14361 2020-11-18 Texas 48 1125898 20471
## 14362 2020-11-18 Utah 49 162091 742
## 14363 2020-11-18 Vermont 50 3161 60
## 14364 2020-11-18 Virgin Islands 78 1463 23
## 14365 2020-11-18 Virginia 51 208833 3860
## 14366 2020-11-18 Washington 53 142511 2704
## 14367 2020-11-18 West Virginia 54 36277 612
## 14368 2020-11-18 Wisconsin 55 350665 2939
## 14369 2020-11-18 Wyoming 56 25275 155
## 14370 2020-11-19 Alabama 1 225910 3419
## 14371 2020-11-19 Alaska 2 25946 95
## 14372 2020-11-19 Arizona 4 288807 6384
## 14373 2020-11-19 Arkansas 5 139855 2297
## 14374 2020-11-19 California 6 1082705 18555
## 14375 2020-11-19 Colorado 8 184260 2734
## 14376 2020-11-19 Connecticut 9 99381 4805
## 14377 2020-11-19 Delaware 10 30153 742
## 14378 2020-11-19 District of Columbia 11 19678 667
## 14379 2020-11-19 Florida 12 914325 17809
## 14380 2020-11-19 Georgia 13 421381 8867
## 14381 2020-11-19 Guam 66 7385 102
## 14382 2020-11-19 Hawaii 15 16917 222
## 14383 2020-11-19 Idaho 16 88642 838
## 14384 2020-11-19 Illinois 17 622869 11671
## 14385 2020-11-19 Indiana 18 278142 5143
## 14386 2020-11-19 Iowa 19 201572 2127
## 14387 2020-11-19 Kansas 20 131408 1326
## 14388 2020-11-19 Kentucky 21 151706 1843
## 14389 2020-11-19 Louisiana 22 211966 6199
## 14390 2020-11-19 Maine 23 9734 171
## 14391 2020-11-19 Maryland 24 175092 4372
## 14392 2020-11-19 Massachusetts 25 198550 10435
## 14393 2020-11-19 Michigan 26 310396 8717
## 14394 2020-11-19 Minnesota 27 249962 3138
## 14395 2020-11-19 Mississippi 28 138791 3619
## 14396 2020-11-19 Missouri 29 270387 3618
## 14397 2020-11-19 Montana 30 51872 569
## 14398 2020-11-19 Nebraska 31 109325 866
## 14399 2020-11-19 Nevada 32 128234 1958
## 14400 2020-11-19 New Hampshire 33 16277 506
## 14401 2020-11-19 New Jersey 34 295556 16689
## 14402 2020-11-19 New Mexico 35 74116 1302
## 14403 2020-11-19 New York 36 584128 33648
## 14404 2020-11-19 North Carolina 37 325658 4968
## 14405 2020-11-19 North Dakota 38 68618 801
## 14406 2020-11-19 Northern Mariana Islands 69 103 2
## 14407 2020-11-19 Ohio 39 326615 5890
## 14408 2020-11-19 Oklahoma 40 164340 1588
## 14409 2020-11-19 Oregon 41 60874 809
## 14410 2020-11-19 Pennsylvania 42 294345 9643
## 14411 2020-11-19 Puerto Rico 72 78046 982
## 14412 2020-11-19 Rhode Island 44 46951 1288
## 14413 2020-11-19 South Carolina 45 201160 4201
## 14414 2020-11-19 South Dakota 46 69742 705
## 14415 2020-11-19 Tennessee 47 321832 4082
## 14416 2020-11-19 Texas 48 1139676 20689
## 14417 2020-11-19 Utah 49 166040 758
## 14418 2020-11-19 Vermont 50 3310 61
## 14419 2020-11-19 Virgin Islands 78 1469 23
## 14420 2020-11-19 Virginia 51 210787 3896
## 14421 2020-11-19 Washington 53 144968 2717
## 14422 2020-11-19 West Virginia 54 37399 623
## 14423 2020-11-19 Wisconsin 55 358113 3021
## 14424 2020-11-19 Wyoming 56 26169 176
## 14425 2020-11-20 Alabama 1 228373 3451
## 14426 2020-11-20 Alaska 2 26403 95
## 14427 2020-11-20 Arizona 4 292880 6427
## 14428 2020-11-20 Arkansas 5 141916 2321
## 14429 2020-11-20 California 6 1096427 18649
## 14430 2020-11-20 Colorado 8 190100 2752
## 14431 2020-11-20 Connecticut 9 101469 4828
## 14432 2020-11-20 Delaware 10 30816 746
## 14433 2020-11-20 District of Columbia 11 19808 669
## 14434 2020-11-20 Florida 12 923410 17888
## 14435 2020-11-20 Georgia 13 424759 8904
## 14436 2020-11-20 Guam 66 7421 104
## 14437 2020-11-20 Hawaii 15 17029 222
## 14438 2020-11-20 Idaho 16 90346 849
## 14439 2020-11-20 Illinois 17 635823 11814
## 14440 2020-11-20 Indiana 18 284960 5206
## 14441 2020-11-20 Iowa 19 205918 2159
## 14442 2020-11-20 Kansas 20 137224 1410
## 14443 2020-11-20 Kentucky 21 155625 1862
## 14444 2020-11-20 Louisiana 22 216709 6233
## 14445 2020-11-20 Maine 23 9958 173
## 14446 2020-11-20 Maryland 24 177239 4398
## 14447 2020-11-20 Massachusetts 25 200949 10469
## 14448 2020-11-20 Michigan 26 320621 8776
## 14449 2020-11-20 Minnesota 27 256756 3206
## 14450 2020-11-20 Mississippi 28 140429 3642
## 14451 2020-11-20 Missouri 29 275917 3675
## 14452 2020-11-20 Montana 30 53346 575
## 14453 2020-11-20 Nebraska 31 111915 925
## 14454 2020-11-20 Nevada 32 130102 1987
## 14455 2020-11-20 New Hampshire 33 16797 507
## 14456 2020-11-20 New Jersey 34 299182 16712
## 14457 2020-11-20 New Mexico 35 77098 1327
## 14458 2020-11-20 New York 36 589605 33696
## 14459 2020-11-20 North Carolina 37 330021 5012
## 14460 2020-11-20 North Dakota 38 70022 824
## 14461 2020-11-20 Northern Mariana Islands 69 103 2
## 14462 2020-11-20 Ohio 39 335423 5955
## 14463 2020-11-20 Oklahoma 40 167261 1603
## 14464 2020-11-20 Oregon 41 62176 815
## 14465 2020-11-20 Pennsylvania 42 301373 9748
## 14466 2020-11-20 Puerto Rico 72 78950 991
## 14467 2020-11-20 Rhode Island 44 48001 1294
## 14468 2020-11-20 South Carolina 45 203161 4231
## 14469 2020-11-20 South Dakota 46 71070 741
## 14470 2020-11-20 Tennessee 47 325282 4156
## 14471 2020-11-20 Texas 48 1153363 20872
## 14472 2020-11-20 Utah 49 170644 776
## 14473 2020-11-20 Vermont 50 3459 62
## 14474 2020-11-20 Virgin Islands 78 1482 23
## 14475 2020-11-20 Virginia 51 213331 3912
## 14476 2020-11-20 Washington 53 147251 2738
## 14477 2020-11-20 West Virginia 54 38480 639
## 14478 2020-11-20 Wisconsin 55 365190 3106
## 14479 2020-11-20 Wyoming 56 27129 176
## 14480 2020-11-21 Alabama 1 230708 3457
## 14481 2020-11-21 Alaska 2 27079 95
## 14482 2020-11-21 Arizona 4 296997 6459
## 14483 2020-11-21 Arkansas 5 143821 2337
## 14484 2020-11-21 California 6 1109869 18709
## 14485 2020-11-21 Colorado 8 195220 2791
## 14486 2020-11-21 Connecticut 9 101469 4828
## 14487 2020-11-21 Delaware 10 31321 746
## 14488 2020-11-21 District of Columbia 11 19961 670
## 14489 2020-11-21 Florida 12 931819 17929
## 14490 2020-11-21 Georgia 13 430687 8940
## 14491 2020-11-21 Guam 66 7421 104
## 14492 2020-11-21 Hawaii 15 17182 229
## 14493 2020-11-21 Idaho 16 91312 851
## 14494 2020-11-21 Illinois 17 647474 11967
## 14495 2020-11-21 Indiana 18 291838 5246
## 14496 2020-11-21 Iowa 19 209203 2191
## 14497 2020-11-21 Kansas 20 137295 1411
## 14498 2020-11-21 Kentucky 21 159035 1886
## 14499 2020-11-21 Louisiana 22 216709 6233
## 14500 2020-11-21 Maine 23 10123 174
## 14501 2020-11-21 Maryland 24 180125 4415
## 14502 2020-11-21 Massachusetts 25 204155 10488
## 14503 2020-11-21 Michigan 26 328178 8874
## 14504 2020-11-21 Minnesota 27 263008 3257
## 14505 2020-11-21 Mississippi 28 142401 3657
## 14506 2020-11-21 Missouri 29 279987 3684
## 14507 2020-11-21 Montana 30 54542 604
## 14508 2020-11-21 Nebraska 31 113225 933
## 14509 2020-11-21 Nevada 32 132610 2017
## 14510 2020-11-21 New Hampshire 33 17281 508
## 14511 2020-11-21 New Jersey 34 303851 16746
## 14512 2020-11-21 New Mexico 35 79440 1352
## 14513 2020-11-21 New York 36 595581 33737
## 14514 2020-11-21 North Carolina 37 333074 5035
## 14515 2020-11-21 North Dakota 38 71546 840
## 14516 2020-11-21 Northern Mariana Islands 69 103 2
## 14517 2020-11-21 Ohio 39 343286 5984
## 14518 2020-11-21 Oklahoma 40 170924 1624
## 14519 2020-11-21 Oregon 41 63668 822
## 14520 2020-11-21 Pennsylvania 42 307247 9862
## 14521 2020-11-21 Puerto Rico 72 80049 1012
## 14522 2020-11-21 Rhode Island 44 48001 1294
## 14523 2020-11-21 South Carolina 45 205018 4274
## 14524 2020-11-21 South Dakota 46 72214 777
## 14525 2020-11-21 Tennessee 47 329490 4163
## 14526 2020-11-21 Texas 48 1164267 21004
## 14527 2020-11-21 Utah 49 173987 789
## 14528 2020-11-21 Vermont 50 3546 63
## 14529 2020-11-21 Virgin Islands 78 1491 23
## 14530 2020-11-21 Virginia 51 215679 3938
## 14531 2020-11-21 Washington 53 148691 2738
## 14532 2020-11-21 West Virginia 54 39598 658
## 14533 2020-11-21 Wisconsin 55 372219 3155
## 14534 2020-11-21 Wyoming 56 27410 176
## 14535 2020-11-22 Alabama 1 232506 3457
## 14536 2020-11-22 Alaska 2 27629 97
## 14537 2020-11-22 Arizona 4 299698 6464
## 14538 2020-11-22 Arkansas 5 145173 2357
## 14539 2020-11-22 California 6 1118673 18726
## 14540 2020-11-22 Colorado 8 199296 2811
## 14541 2020-11-22 Connecticut 9 101469 4828
## 14542 2020-11-22 Delaware 10 31808 748
## 14543 2020-11-22 District of Columbia 11 20151 670
## 14544 2020-11-22 Florida 12 938406 17990
## 14545 2020-11-22 Georgia 13 432954 8955
## 14546 2020-11-22 Guam 66 7518 107
## 14547 2020-11-22 Hawaii 15 17302 231
## 14548 2020-11-22 Idaho 16 91935 852
## 14549 2020-11-22 Illinois 17 657402 12064
## 14550 2020-11-22 Indiana 18 298021 5305
## 14551 2020-11-22 Iowa 19 211664 2202
## 14552 2020-11-22 Kansas 20 137530 1410
## 14553 2020-11-22 Kentucky 21 161222 1887
## 14554 2020-11-22 Louisiana 22 220192 6260
## 14555 2020-11-22 Maine 23 10359 176
## 14556 2020-11-22 Maryland 24 182482 4434
## 14557 2020-11-22 Massachusetts 25 206850 10512
## 14558 2020-11-22 Michigan 26 328833 8874
## 14559 2020-11-22 Minnesota 27 270213 3297
## 14560 2020-11-22 Mississippi 28 143180 3676
## 14561 2020-11-22 Missouri 29 283756 3688
## 14562 2020-11-22 Montana 30 55680 607
## 14563 2020-11-22 Nebraska 31 114061 937
## 14564 2020-11-22 Nevada 32 134761 2022
## 14565 2020-11-22 New Hampshire 33 17598 512
## 14566 2020-11-22 New Jersey 34 307819 16761
## 14567 2020-11-22 New Mexico 35 81896 1385
## 14568 2020-11-22 New York 36 600967 33767
## 14569 2020-11-22 North Carolina 37 336983 5062
## 14570 2020-11-22 North Dakota 38 72689 846
## 14571 2020-11-22 Northern Mariana Islands 69 104 2
## 14572 2020-11-22 Ohio 39 351419 5996
## 14573 2020-11-22 Oklahoma 40 174330 1634
## 14574 2020-11-22 Oregon 41 65170 822
## 14575 2020-11-22 Pennsylvania 42 313788 9901
## 14576 2020-11-22 Puerto Rico 72 81074 1017
## 14577 2020-11-22 Rhode Island 44 48001 1294
## 14578 2020-11-22 South Carolina 45 206295 4283
## 14579 2020-11-22 South Dakota 46 73065 819
## 14580 2020-11-22 Tennessee 47 333853 4218
## 14581 2020-11-22 Texas 48 1172761 21083
## 14582 2020-11-22 Utah 49 177176 793
## 14583 2020-11-22 Vermont 50 3629 63
## 14584 2020-11-22 Virgin Islands 78 1504 23
## 14585 2020-11-22 Virginia 51 217796 3938
## 14586 2020-11-22 Washington 53 149703 2738
## 14587 2020-11-22 West Virginia 54 40478 662
## 14588 2020-11-22 Wisconsin 55 376238 3162
## 14589 2020-11-22 Wyoming 56 28169 176
## 14590 2020-11-23 Alabama 1 234080 3459
## 14591 2020-11-23 Alaska 2 28128 97
## 14592 2020-11-23 Arizona 4 303188 6465
## 14593 2020-11-23 Arkansas 5 146190 2387
## 14594 2020-11-23 California 6 1136498 18768
## 14595 2020-11-23 Colorado 8 203578 2821
## 14596 2020-11-23 Connecticut 9 106740 4871
## 14597 2020-11-23 Delaware 10 32211 752
## 14598 2020-11-23 District of Columbia 11 20290 672
## 14599 2020-11-23 Florida 12 944737 18084
## 14600 2020-11-23 Georgia 13 434916 8972
## 14601 2020-11-23 Guam 66 7571 107
## 14602 2020-11-23 Hawaii 15 17405 231
## 14603 2020-11-23 Idaho 16 93602 869
## 14604 2020-11-23 Illinois 17 665865 12141
## 14605 2020-11-23 Indiana 18 303575 5332
## 14606 2020-11-23 Iowa 19 214792 2222
## 14607 2020-11-23 Kansas 20 144831 1462
## 14608 2020-11-23 Kentucky 21 163767 1906
## 14609 2020-11-23 Louisiana 22 221160 6284
## 14610 2020-11-23 Maine 23 10544 177
## 14611 2020-11-23 Maryland 24 184140 4448
## 14612 2020-11-23 Massachusetts 25 208623 10531
## 14613 2020-11-23 Michigan 26 340223 8937
## 14614 2020-11-23 Minnesota 27 276556 3321
## 14615 2020-11-23 Mississippi 28 143879 3676
## 14616 2020-11-23 Missouri 29 288308 3697
## 14617 2020-11-23 Montana 30 56428 615
## 14618 2020-11-23 Nebraska 31 116434 962
## 14619 2020-11-23 Nevada 32 136672 2030
## 14620 2020-11-23 New Hampshire 33 18042 512
## 14621 2020-11-23 New Jersey 34 311400 16772
## 14622 2020-11-23 New Mexico 35 84148 1402
## 14623 2020-11-23 New York 36 606878 33804
## 14624 2020-11-23 North Carolina 37 339672 5076
## 14625 2020-11-23 North Dakota 38 73403 852
## 14626 2020-11-23 Northern Mariana Islands 69 104 2
## 14627 2020-11-23 Ohio 39 363304 6020
## 14628 2020-11-23 Oklahoma 40 177874 1649
## 14629 2020-11-23 Oregon 41 66334 830
## 14630 2020-11-23 Pennsylvania 42 320250 9932
## 14631 2020-11-23 Puerto Rico 72 81815 1032
## 14632 2020-11-23 Rhode Island 44 50573 1309
## 14633 2020-11-23 South Carolina 45 207552 4288
## 14634 2020-11-23 South Dakota 46 73848 819
## 14635 2020-11-23 Tennessee 47 337637 4254
## 14636 2020-11-23 Texas 48 1183834 21144
## 14637 2020-11-23 Utah 49 179420 799
## 14638 2020-11-23 Vermont 50 3714 63
## 14639 2020-11-23 Virgin Islands 78 1507 23
## 14640 2020-11-23 Virginia 51 221038 3942
## 14641 2020-11-23 Washington 53 155336 2775
## 14642 2020-11-23 West Virginia 54 41114 667
## 14643 2020-11-23 Wisconsin 55 379693 3175
## 14644 2020-11-23 Wyoming 56 29431 202
## 14645 2020-11-24 Alabama 1 236865 3472
## 14646 2020-11-24 Alaska 2 28708 110
## 14647 2020-11-24 Arizona 4 307943 6515
## 14648 2020-11-24 Arkansas 5 148312 2405
## 14649 2020-11-24 California 6 1153032 18875
## 14650 2020-11-24 Colorado 8 207882 2868
## 14651 2020-11-24 Connecticut 9 107280 4881
## 14652 2020-11-24 Delaware 10 32664 757
## 14653 2020-11-24 District of Columbia 11 20409 673
## 14654 2020-11-24 Florida 12 953292 18156
## 14655 2020-11-24 Georgia 13 438441 8979
## 14656 2020-11-24 Guam 66 7624 108
## 14657 2020-11-24 Hawaii 15 17461 231
## 14658 2020-11-24 Idaho 16 95588 881
## 14659 2020-11-24 Illinois 17 675543 12294
## 14660 2020-11-24 Indiana 18 309218 5435
## 14661 2020-11-24 Iowa 19 217786 2271
## 14662 2020-11-24 Kansas 20 145272 1456
## 14663 2020-11-24 Kentucky 21 166478 1938
## 14664 2020-11-24 Louisiana 22 224403 6323
## 14665 2020-11-24 Maine 23 10799 189
## 14666 2020-11-24 Maryland 24 185812 4481
## 14667 2020-11-24 Massachusetts 25 211199 10551
## 14668 2020-11-24 Michigan 26 346926 9094
## 14669 2020-11-24 Minnesota 27 282972 3359
## 14670 2020-11-24 Mississippi 28 144544 3729
## 14671 2020-11-24 Missouri 29 292786 3869
## 14672 2020-11-24 Montana 30 57559 630
## 14673 2020-11-24 Nebraska 31 117929 985
## 14674 2020-11-24 Nevada 32 140572 2053
## 14675 2020-11-24 New Hampshire 33 18382 513
## 14676 2020-11-24 New Jersey 34 315675 16819
## 14677 2020-11-24 New Mexico 35 86247 1430
## 14678 2020-11-24 New York 36 611756 33847
## 14679 2020-11-24 North Carolina 37 343566 5114
## 14680 2020-11-24 North Dakota 38 74407 889
## 14681 2020-11-24 Northern Mariana Islands 69 104 2
## 14682 2020-11-24 Ohio 39 371908 6118
## 14683 2020-11-24 Oklahoma 40 180610 1664
## 14684 2020-11-24 Oregon 41 67337 848
## 14685 2020-11-24 Pennsylvania 42 326615 10014
## 14686 2020-11-24 Puerto Rico 72 82163 1038
## 14687 2020-11-24 Rhode Island 44 51424 1325
## 14688 2020-11-24 South Carolina 45 209230 4313
## 14689 2020-11-24 South Dakota 46 74859 821
## 14690 2020-11-24 Tennessee 47 339059 4325
## 14691 2020-11-24 Texas 48 1204366 21338
## 14692 2020-11-24 Utah 49 182121 810
## 14693 2020-11-24 Vermont 50 3762 64
## 14694 2020-11-24 Virgin Islands 78 1521 23
## 14695 2020-11-24 Virginia 51 223582 3979
## 14696 2020-11-24 Washington 53 158234 2807
## 14697 2020-11-24 West Virginia 54 42083 682
## 14698 2020-11-24 Wisconsin 55 386441 3295
## 14699 2020-11-24 Wyoming 56 29959 202
## 14700 2020-11-25 Alabama 1 239318 3532
## 14701 2020-11-25 Alaska 2 29386 110
## 14702 2020-11-25 Arizona 4 311727 6529
## 14703 2020-11-25 Arkansas 5 150277 2425
## 14704 2020-11-25 California 6 1167176 18982
## 14705 2020-11-25 Colorado 8 212416 2930
## 14706 2020-11-25 Connecticut 9 109152 4926
## 14707 2020-11-25 Delaware 10 32995 760
## 14708 2020-11-25 District of Columbia 11 20516 677
## 14709 2020-11-25 Florida 12 961668 18253
## 14710 2020-11-25 Georgia 13 441737 9054
## 14711 2020-11-25 Guam 66 7674 110
## 14712 2020-11-25 Hawaii 15 17561 233
## 14713 2020-11-25 Idaho 16 97007 901
## 14714 2020-11-25 Illinois 17 686855 12465
## 14715 2020-11-25 Indiana 18 315212 5498
## 14716 2020-11-25 Iowa 19 221288 2312
## 14717 2020-11-25 Kansas 20 150515 1503
## 14718 2020-11-25 Kentucky 21 169822 1975
## 14719 2020-11-25 Louisiana 22 225638 6350
## 14720 2020-11-25 Maine 23 11027 190
## 14721 2020-11-25 Maryland 24 188509 4518
## 14722 2020-11-25 Massachusetts 25 214594 10604
## 14723 2020-11-25 Michigan 26 351831 9168
## 14724 2020-11-25 Minnesota 27 289362 3434
## 14725 2020-11-25 Mississippi 28 145636 3745
## 14726 2020-11-25 Missouri 29 297374 3908
## 14727 2020-11-25 Montana 30 58620 653
## 14728 2020-11-25 Nebraska 31 120459 1008
## 14729 2020-11-25 Nevada 32 142951 2077
## 14730 2020-11-25 New Hampshire 33 18776 514
## 14731 2020-11-25 New Jersey 34 319734 16886
## 14732 2020-11-25 New Mexico 35 88102 1451
## 14733 2020-11-25 New York 36 618023 33890
## 14734 2020-11-25 North Carolina 37 348102 5177
## 14735 2020-11-25 North Dakota 38 75484 893
## 14736 2020-11-25 Northern Mariana Islands 69 104 2
## 14737 2020-11-25 Ohio 39 382743 6274
## 14738 2020-11-25 Oklahoma 40 184342 1680
## 14739 2020-11-25 Oregon 41 68504 871
## 14740 2020-11-25 Pennsylvania 42 333571 10162
## 14741 2020-11-25 Puerto Rico 72 82340 1052
## 14742 2020-11-25 Rhode Island 44 52317 1335
## 14743 2020-11-25 South Carolina 45 210905 4317
## 14744 2020-11-25 South Dakota 46 76142 849
## 14745 2020-11-25 Tennessee 47 341456 4415
## 14746 2020-11-25 Texas 48 1219283 21536
## 14747 2020-11-25 Utah 49 183960 834
## 14748 2020-11-25 Vermont 50 3827 64
## 14749 2020-11-25 Virgin Islands 78 1521 23
## 14750 2020-11-25 Virginia 51 226300 4008
## 14751 2020-11-25 Washington 53 161207 2825
## 14752 2020-11-25 West Virginia 54 43050 695
## 14753 2020-11-25 Wisconsin 55 392443 3363
## 14754 2020-11-25 Wyoming 56 30761 215
## 14755 2020-11-26 Alabama 1 241957 3572
## 14756 2020-11-26 Alaska 2 29940 113
## 14757 2020-11-26 Arizona 4 314326 6568
## 14758 2020-11-26 Arkansas 5 152625 2436
## 14759 2020-11-26 California 6 1176159 19025
## 14760 2020-11-26 Colorado 8 217655 2977
## 14761 2020-11-26 Connecticut 9 109152 4926
## 14762 2020-11-26 Delaware 10 33579 761
## 14763 2020-11-26 District of Columbia 11 20736 677
## 14764 2020-11-26 Florida 12 961668 18253
## 14765 2020-11-26 Georgia 13 445204 9089
## 14766 2020-11-26 Guam 66 7717 112
## 14767 2020-11-26 Hawaii 15 17678 235
## 14768 2020-11-26 Idaho 16 97007 901
## 14769 2020-11-26 Illinois 17 698364 12609
## 14770 2020-11-26 Indiana 18 321595 5561
## 14771 2020-11-26 Iowa 19 223323 2349
## 14772 2020-11-26 Kansas 20 150522 1503
## 14773 2020-11-26 Kentucky 21 170081 1983
## 14774 2020-11-26 Louisiana 22 225638 6350
## 14775 2020-11-26 Maine 23 11265 190
## 14776 2020-11-26 Maryland 24 190635 4547
## 14777 2020-11-26 Massachusetts 25 214594 10604
## 14778 2020-11-26 Michigan 26 352121 9169
## 14779 2020-11-26 Minnesota 27 289362 3434
## 14780 2020-11-26 Mississippi 28 147382 3763
## 14781 2020-11-26 Missouri 29 300825 3932
## 14782 2020-11-26 Montana 30 59682 658
## 14783 2020-11-26 Nebraska 31 123124 1011
## 14784 2020-11-26 Nevada 32 144794 2093
## 14785 2020-11-26 New Hampshire 33 18776 514
## 14786 2020-11-26 New Jersey 34 324207 16925
## 14787 2020-11-26 New Mexico 35 89796 1469
## 14788 2020-11-26 New York 36 624961 33959
## 14789 2020-11-26 North Carolina 37 348148 5177
## 14790 2020-11-26 North Dakota 38 76448 903
## 14791 2020-11-26 Northern Mariana Islands 69 104 2
## 14792 2020-11-26 Ohio 39 382743 6274
## 14793 2020-11-26 Oklahoma 40 184342 1680
## 14794 2020-11-26 Oregon 41 70006 884
## 14795 2020-11-26 Pennsylvania 42 340998 10271
## 14796 2020-11-26 Puerto Rico 72 82841 1069
## 14797 2020-11-26 Rhode Island 44 52317 1335
## 14798 2020-11-26 South Carolina 45 210905 4317
## 14799 2020-11-26 South Dakota 46 76142 849
## 14800 2020-11-26 Tennessee 47 345371 4468
## 14801 2020-11-26 Texas 48 1223893 21709
## 14802 2020-11-26 Utah 49 184382 834
## 14803 2020-11-26 Vermont 50 3827 64
## 14804 2020-11-26 Virgin Islands 78 1521 23
## 14805 2020-11-26 Virginia 51 228900 4029
## 14806 2020-11-26 Washington 53 161911 2825
## 14807 2020-11-26 West Virginia 54 44180 712
## 14808 2020-11-26 Wisconsin 55 398104 3431
## 14809 2020-11-26 Wyoming 56 30761 215
## 14810 2020-11-27 Alabama 1 242874 3572
## 14811 2020-11-27 Alaska 2 30612 113
## 14812 2020-11-27 Arizona 4 318695 6588
## 14813 2020-11-27 Arkansas 5 153677 2436
## 14814 2020-11-27 California 6 1193089 19100
## 14815 2020-11-27 Colorado 8 222544 2998
## 14816 2020-11-27 Connecticut 9 112581 4961
## 14817 2020-11-27 Delaware 10 34170 763
## 14818 2020-11-27 District of Columbia 11 20937 677
## 14819 2020-11-27 Florida 12 979012 18362
## 14820 2020-11-27 Georgia 13 447942 9130
## 14821 2020-11-27 Guam 66 7737 113
## 14822 2020-11-27 Hawaii 15 17796 238
## 14823 2020-11-27 Idaho 16 99148 914
## 14824 2020-11-27 Illinois 17 706123 12705
## 14825 2020-11-27 Indiana 18 327234 5594
## 14826 2020-11-27 Iowa 19 225065 2360
## 14827 2020-11-27 Kansas 20 155245 1529
## 14828 2020-11-27 Kentucky 21 174684 2009
## 14829 2020-11-27 Louisiana 22 230602 6391
## 14830 2020-11-27 Maine 23 11265 190
## 14831 2020-11-27 Maryland 24 193205 4569
## 14832 2020-11-27 Massachusetts 25 219252 10635
## 14833 2020-11-27 Michigan 26 368890 9352
## 14834 2020-11-27 Minnesota 27 295060 3535
## 14835 2020-11-27 Mississippi 28 148387 3769
## 14836 2020-11-27 Missouri 29 304234 3943
## 14837 2020-11-27 Montana 30 59796 658
## 14838 2020-11-27 Nebraska 31 124664 1017
## 14839 2020-11-27 Nevada 32 147145 2103
## 14840 2020-11-27 New Hampshire 33 19313 517
## 14841 2020-11-27 New Jersey 34 328302 16942
## 14842 2020-11-27 New Mexico 35 91852 1504
## 14843 2020-11-27 New York 36 633140 34004
## 14844 2020-11-27 North Carolina 37 355664 5240
## 14845 2020-11-27 North Dakota 38 77238 908
## 14846 2020-11-27 Northern Mariana Islands 69 104 2
## 14847 2020-11-27 Ohio 39 399808 6346
## 14848 2020-11-27 Oklahoma 40 187567 1704
## 14849 2020-11-27 Oregon 41 70833 890
## 14850 2020-11-27 Pennsylvania 42 349360 10295
## 14851 2020-11-27 Puerto Rico 72 84293 1076
## 14852 2020-11-27 Rhode Island 44 53954 1346
## 14853 2020-11-27 South Carolina 45 213120 4346
## 14854 2020-11-27 South Dakota 46 78280 888
## 14855 2020-11-27 Tennessee 47 349506 4475
## 14856 2020-11-27 Texas 48 1228514 21762
## 14857 2020-11-27 Utah 49 190044 849
## 14858 2020-11-27 Vermont 50 4005 67
## 14859 2020-11-27 Virgin Islands 78 1521 23
## 14860 2020-11-27 Virginia 51 230444 4044
## 14861 2020-11-27 Washington 53 165230 2828
## 14862 2020-11-27 West Virginia 54 45046 712
## 14863 2020-11-27 Wisconsin 55 399557 3444
## 14864 2020-11-27 Wyoming 56 31773 215
## 14865 2020-11-28 Alabama 1 244993 3572
## 14866 2020-11-28 Alaska 2 31279 115
## 14867 2020-11-28 Arizona 4 322774 6624
## 14868 2020-11-28 Arkansas 5 155026 2449
## 14869 2020-11-28 California 6 1206296 19132
## 14870 2020-11-28 Colorado 8 226567 3012
## 14871 2020-11-28 Connecticut 9 112581 4961
## 14872 2020-11-28 Delaware 10 34670 763
## 14873 2020-11-28 District of Columbia 11 21308 678
## 14874 2020-11-28 Florida 12 985289 18441
## 14875 2020-11-28 Georgia 13 450627 9173
## 14876 2020-11-28 Guam 66 7751 113
## 14877 2020-11-28 Hawaii 15 17871 238
## 14878 2020-11-28 Idaho 16 99984 919
## 14879 2020-11-28 Illinois 17 714070 12852
## 14880 2020-11-28 Indiana 18 331725 5663
## 14881 2020-11-28 Iowa 19 227181 2375
## 14882 2020-11-28 Kansas 20 155265 1529
## 14883 2020-11-28 Kentucky 21 177453 2028
## 14884 2020-11-28 Louisiana 22 230602 6391
## 14885 2020-11-28 Maine 23 11288 191
## 14886 2020-11-28 Maryland 24 194603 4602
## 14887 2020-11-28 Massachusetts 25 222469 10676
## 14888 2020-11-28 Michigan 26 377209 9461
## 14889 2020-11-28 Minnesota 27 304082 3580
## 14890 2020-11-28 Mississippi 28 149940 3779
## 14891 2020-11-28 Missouri 29 306526 3950
## 14892 2020-11-28 Montana 30 60845 670
## 14893 2020-11-28 Nebraska 31 125820 1021
## 14894 2020-11-28 Nevada 32 149613 2123
## 14895 2020-11-28 New Hampshire 33 20002 523
## 14896 2020-11-28 New Jersey 34 332104 16965
## 14897 2020-11-28 New Mexico 35 93982 1527
## 14898 2020-11-28 New York 36 639200 34049
## 14899 2020-11-28 North Carolina 37 358654 5249
## 14900 2020-11-28 North Dakota 38 77941 921
## 14901 2020-11-28 Northern Mariana Islands 69 104 2
## 14902 2020-11-28 Ohio 39 406703 6378
## 14903 2020-11-28 Oklahoma 40 193824 1717
## 14904 2020-11-28 Oregon 41 72506 899
## 14905 2020-11-28 Pennsylvania 42 356243 10337
## 14906 2020-11-28 Puerto Rico 72 85196 1083
## 14907 2020-11-28 Rhode Island 44 53954 1346
## 14908 2020-11-28 South Carolina 45 214911 4346
## 14909 2020-11-28 South Dakota 46 79099 942
## 14910 2020-11-28 Tennessee 47 355885 4489
## 14911 2020-11-28 Texas 48 1234740 21847
## 14912 2020-11-28 Utah 49 192087 863
## 14913 2020-11-28 Vermont 50 4033 67
## 14914 2020-11-28 Virgin Islands 78 1540 23
## 14915 2020-11-28 Virginia 51 233617 4054
## 14916 2020-11-28 Washington 53 166736 2828
## 14917 2020-11-28 West Virginia 54 45845 718
## 14918 2020-11-28 Wisconsin 55 404999 3474
## 14919 2020-11-28 Wyoming 56 31929 215
## 14920 2020-11-29 Alabama 1 247229 3577
## 14921 2020-11-29 Alaska 2 31896 115
## 14922 2020-11-29 Arizona 4 325995 6635
## 14923 2020-11-29 Arkansas 5 156247 2470
## 14924 2020-11-29 California 6 1219511 19151
## 14925 2020-11-29 Colorado 8 230057 3025
## 14926 2020-11-29 Connecticut 9 112581 4961
## 14927 2020-11-29 Delaware 10 35251 770
## 14928 2020-11-29 District of Columbia 11 21448 680
## 14929 2020-11-29 Florida 12 992652 18499
## 14930 2020-11-29 Georgia 13 452322 9189
## 14931 2020-11-29 Guam 66 7787 113
## 14932 2020-11-29 Hawaii 15 17925 242
## 14933 2020-11-29 Idaho 16 100758 925
## 14934 2020-11-29 Illinois 17 721487 12895
## 14935 2020-11-29 Indiana 18 336027 5685
## 14936 2020-11-29 Iowa 19 228690 2399
## 14937 2020-11-29 Kansas 20 155377 1529
## 14938 2020-11-29 Kentucky 21 180164 2039
## 14939 2020-11-29 Louisiana 22 232245 6407
## 14940 2020-11-29 Maine 23 11508 191
## 14941 2020-11-29 Maryland 24 196727 4625
## 14942 2020-11-29 Massachusetts 25 224964 10722
## 14943 2020-11-29 Michigan 26 377526 9461
## 14944 2020-11-29 Minnesota 27 313028 3637
## 14945 2020-11-29 Mississippi 28 151785 3806
## 14946 2020-11-29 Missouri 29 309420 3956
## 14947 2020-11-29 Montana 30 61801 672
## 14948 2020-11-29 Nebraska 31 127022 1025
## 14949 2020-11-29 Nevada 32 150825 2140
## 14950 2020-11-29 New Hampshire 33 20480 526
## 14951 2020-11-29 New Jersey 34 335943 16978
## 14952 2020-11-29 New Mexico 35 95417 1540
## 14953 2020-11-29 New York 36 645932 34101
## 14954 2020-11-29 North Carolina 37 362124 5279
## 14955 2020-11-29 North Dakota 38 78664 926
## 14956 2020-11-29 Northern Mariana Islands 69 104 2
## 14957 2020-11-29 Ohio 39 414432 6399
## 14958 2020-11-29 Oklahoma 40 195545 1736
## 14959 2020-11-29 Oregon 41 74120 907
## 14960 2020-11-29 Pennsylvania 42 361387 10406
## 14961 2020-11-29 Puerto Rico 72 85317 1094
## 14962 2020-11-29 Rhode Island 44 53954 1346
## 14963 2020-11-29 South Carolina 45 216129 4353
## 14964 2020-11-29 South Dakota 46 79900 943
## 14965 2020-11-29 Tennessee 47 358809 4500
## 14966 2020-11-29 Texas 48 1246883 21900
## 14967 2020-11-29 Utah 49 193809 868
## 14968 2020-11-29 Vermont 50 4100 67
## 14969 2020-11-29 Virgin Islands 78 1544 23
## 14970 2020-11-29 Virginia 51 235942 4058
## 14971 2020-11-29 Washington 53 168333 2828
## 14972 2020-11-29 West Virginia 54 46997 729
## 14973 2020-11-29 Wisconsin 55 409054 3496
## 14974 2020-11-29 Wyoming 56 32489 215
## 14975 2020-11-30 Alabama 1 249524 3578
## 14976 2020-11-30 Alaska 2 32407 115
## 14977 2020-11-30 Arizona 4 327046 6640
## 14978 2020-11-30 Arkansas 5 157359 2502
## 14979 2020-11-30 California 6 1237238 19209
## 14980 2020-11-30 Colorado 8 234502 3060
## 14981 2020-11-30 Connecticut 9 117295 5020
## 14982 2020-11-30 Delaware 10 35654 772
## 14983 2020-11-30 District of Columbia 11 21552 680
## 14984 2020-11-30 Florida 12 999311 18596
## 14985 2020-11-30 Georgia 13 454328 9198
## 14986 2020-11-30 Guam 66 7821 113
## 14987 2020-11-30 Hawaii 15 18006 242
## 14988 2020-11-30 Idaho 16 102158 937
## 14989 2020-11-30 Illinois 17 727825 13015
## 14990 2020-11-30 Indiana 18 341694 5723
## 14991 2020-11-30 Iowa 19 230634 2426
## 14992 2020-11-30 Kansas 20 160428 1560
## 14993 2020-11-30 Kentucky 21 183255 2065
## 14994 2020-11-30 Louisiana 22 232414 6420
## 14995 2020-11-30 Maine 23 11757 194
## 14996 2020-11-30 Maryland 24 198710 4641
## 14997 2020-11-30 Massachusetts 25 226132 10748
## 14998 2020-11-30 Michigan 26 388102 9565
## 14999 2020-11-30 Minnesota 27 318822 3652
## 15000 2020-11-30 Mississippi 28 153270 3807
## 15001 2020-11-30 Missouri 29 314981 3981
## 15002 2020-11-30 Montana 30 62256 684
## 15003 2020-11-30 Nebraska 31 129043 1047
## 15004 2020-11-30 Nevada 32 152726 2149
## 15005 2020-11-30 New Hampshire 33 20994 526
## 15006 2020-11-30 New Jersey 34 339133 16993
## 15007 2020-11-30 New Mexico 35 97095 1568
## 15008 2020-11-30 New York 36 652748 34150
## 15009 2020-11-30 North Carolina 37 364968 5296
## 15010 2020-11-30 North Dakota 38 79258 933
## 15011 2020-11-30 Northern Mariana Islands 69 106 2
## 15012 2020-11-30 Ohio 39 421063 6429
## 15013 2020-11-30 Oklahoma 40 197745 1743
## 15014 2020-11-30 Oregon 41 75454 919
## 15015 2020-11-30 Pennsylvania 42 366971 10439
## 15016 2020-11-30 Puerto Rico 72 86160 1106
## 15017 2020-11-30 Rhode Island 44 56723 1373
## 15018 2020-11-30 South Carolina 45 217487 4381
## 15019 2020-11-30 South Dakota 46 80464 946
## 15020 2020-11-30 Tennessee 47 366412 4546
## 15021 2020-11-30 Texas 48 1261943 21968
## 15022 2020-11-30 Utah 49 195744 871
## 15023 2020-11-30 Vermont 50 4172 69
## 15024 2020-11-30 Virgin Islands 78 1544 23
## 15025 2020-11-30 Virginia 51 237835 4062
## 15026 2020-11-30 Washington 53 172175 2895
## 15027 2020-11-30 West Virginia 54 47842 735
## 15028 2020-11-30 Wisconsin 55 411730 3504
## 15029 2020-11-30 Wyoming 56 33305 215
## 15030 2020-12-01 Alabama 1 252900 3638
## 15031 2020-12-01 Alaska 2 32911 116
## 15032 2020-12-01 Arizona 4 338254 6692
## 15033 2020-12-01 Arkansas 5 159309 2512
## 15034 2020-12-01 California 6 1253905 19327
## 15035 2020-12-01 Colorado 8 238779 3136
## 15036 2020-12-01 Connecticut 9 118754 5040
## 15037 2020-12-01 Delaware 10 36343 777
## 15038 2020-12-01 District of Columbia 11 21685 685
## 15039 2020-12-01 Florida 12 1008158 18678
## 15040 2020-12-01 Georgia 13 458985 9253
## 15041 2020-12-01 Guam 66 7858 113
## 15042 2020-12-01 Hawaii 15 18049 242
## 15043 2020-12-01 Idaho 16 103642 966
## 15044 2020-12-01 Illinois 17 740510 13175
## 15045 2020-12-01 Indiana 18 347097 5864
## 15046 2020-12-01 Iowa 19 233062 2449
## 15047 2020-12-01 Kansas 20 160718 1560
## 15048 2020-12-01 Kentucky 21 187285 2097
## 15049 2020-12-01 Louisiana 22 237740 6455
## 15050 2020-12-01 Maine 23 11976 214
## 15051 2020-12-01 Maryland 24 201479 4673
## 15052 2020-12-01 Massachusetts 25 229205 10778
## 15053 2020-12-01 Michigan 26 394554 9758
## 15054 2020-12-01 Minnesota 27 322371 3674
## 15055 2020-12-01 Mississippi 28 154411 3836
## 15056 2020-12-01 Missouri 29 317903 4130
## 15057 2020-12-01 Montana 30 63324 700
## 15058 2020-12-01 Nebraska 31 130796 1092
## 15059 2020-12-01 Nevada 32 155312 2182
## 15060 2020-12-01 New Hampshire 33 21766 528
## 15061 2020-12-01 New Jersey 34 343739 17083
## 15062 2020-12-01 New Mexico 35 99419 1589
## 15063 2020-12-01 New York 36 660041 34222
## 15064 2020-12-01 North Carolina 37 368615 5322
## 15065 2020-12-01 North Dakota 38 79661 960
## 15066 2020-12-01 Northern Mariana Islands 69 106 2
## 15067 2020-12-01 Ohio 39 430093 6548
## 15068 2020-12-01 Oklahoma 40 199482 1758
## 15069 2020-12-01 Oregon 41 76655 938
## 15070 2020-12-01 Pennsylvania 42 372688 10614
## 15071 2020-12-01 Puerto Rico 72 86935 1122
## 15072 2020-12-01 Rhode Island 44 57906 1380
## 15073 2020-12-01 South Carolina 45 218912 4404
## 15074 2020-12-01 South Dakota 46 80912 948
## 15075 2020-12-01 Tennessee 47 371980 4584
## 15076 2020-12-01 Texas 48 1275295 22204
## 15077 2020-12-01 Utah 49 198260 890
## 15078 2020-12-01 Vermont 50 4239 72
## 15079 2020-12-01 Virgin Islands 78 1550 23
## 15080 2020-12-01 Virginia 51 240063 4093
## 15081 2020-12-01 Washington 53 174969 2927
## 15082 2020-12-01 West Virginia 54 48818 758
## 15083 2020-12-01 Wisconsin 55 416365 3628
## 15084 2020-12-01 Wyoming 56 33805 230
## 15085 2020-12-02 Alabama 1 256828 3711
## 15086 2020-12-02 Alaska 2 33614 116
## 15087 2020-12-02 Arizona 4 342925 6755
## 15088 2020-12-02 Arkansas 5 161521 2522
## 15089 2020-12-02 California 6 1272079 19440
## 15090 2020-12-02 Colorado 8 243324 3226
## 15091 2020-12-02 Connecticut 9 121426 5091
## 15092 2020-12-02 Delaware 10 36698 779
## 15093 2020-12-02 District of Columbia 11 21842 690
## 15094 2020-12-02 Florida 12 1018152 18775
## 15095 2020-12-02 Georgia 13 464417 9301
## 15096 2020-12-02 Guam 66 7889 113
## 15097 2020-12-02 Hawaii 15 18117 242
## 15098 2020-12-02 Idaho 16 105250 1002
## 15099 2020-12-02 Illinois 17 750208 13433
## 15100 2020-12-02 Indiana 18 353722 5973
## 15101 2020-12-02 Iowa 19 236159 2518
## 15102 2020-12-02 Kansas 20 164981 1679
## 15103 2020-12-02 Kentucky 21 191067 2124
## 15104 2020-12-02 Louisiana 22 241335 6501
## 15105 2020-12-02 Maine 23 12208 218
## 15106 2020-12-02 Maryland 24 203672 4715
## 15107 2020-12-02 Massachusetts 25 234232 10824
## 15108 2020-12-02 Michigan 26 401953 9839
## 15109 2020-12-02 Minnesota 27 327536 3751
## 15110 2020-12-02 Mississippi 28 156868 3851
## 15111 2020-12-02 Missouri 29 321411 4185
## 15112 2020-12-02 Montana 30 64399 713
## 15113 2020-12-02 Nebraska 31 133139 1139
## 15114 2020-12-02 Nevada 32 157586 2225
## 15115 2020-12-02 New Hampshire 33 22332 537
## 15116 2020-12-02 New Jersey 34 348042 17145
## 15117 2020-12-02 New Mexico 35 100963 1629
## 15118 2020-12-02 New York 36 669016 34286
## 15119 2020-12-02 North Carolina 37 372525 5406
## 15120 2020-12-02 North Dakota 38 80141 972
## 15121 2020-12-02 Northern Mariana Islands 69 106 2
## 15122 2020-12-02 Ohio 39 437928 6671
## 15123 2020-12-02 Oklahoma 40 202341 1812
## 15124 2020-12-02 Oregon 41 78206 962
## 15125 2020-12-02 Pennsylvania 42 381342 10803
## 15126 2020-12-02 Puerto Rico 72 87323 1144
## 15127 2020-12-02 Rhode Island 44 59005 1391
## 15128 2020-12-02 South Carolina 45 220835 4444
## 15129 2020-12-02 South Dakota 46 82203 995
## 15130 2020-12-02 Tennessee 47 375995 4635
## 15131 2020-12-02 Texas 48 1293839 22422
## 15132 2020-12-02 Utah 49 202220 906
## 15133 2020-12-02 Vermont 50 4461 74
## 15134 2020-12-02 Virgin Islands 78 1589 23
## 15135 2020-12-02 Virginia 51 242480 4113
## 15136 2020-12-02 Washington 53 177929 2979
## 15137 2020-12-02 West Virginia 54 49905 778
## 15138 2020-12-02 Wisconsin 55 420930 3715
## 15139 2020-12-02 Wyoming 56 34507 230
## 15140 2020-12-03 Alabama 1 260359 3776
## 15141 2020-12-03 Alaska 2 34377 124
## 15142 2020-12-03 Arizona 4 348134 6834
## 15143 2020-12-03 Arkansas 5 164310 2555
## 15144 2020-12-03 California 6 1293937 19586
## 15145 2020-12-03 Colorado 8 248779 3335
## 15146 2020-12-03 Connecticut 9 126177 5111
## 15147 2020-12-03 Delaware 10 37456 779
## 15148 2020-12-03 District of Columbia 11 22164 692
## 15149 2020-12-03 Florida 12 1029022 18873
## 15150 2020-12-03 Georgia 13 469955 9377
## 15151 2020-12-03 Guam 66 7911 113
## 15152 2020-12-03 Hawaii 15 18256 244
## 15153 2020-12-03 Idaho 16 106882 1023
## 15154 2020-12-03 Illinois 17 761209 13650
## 15155 2020-12-03 Indiana 18 362182 6033
## 15156 2020-12-03 Iowa 19 238722 2603
## 15157 2020-12-03 Kansas 20 165613 1679
## 15158 2020-12-03 Kentucky 21 194851 2185
## 15159 2020-12-03 Louisiana 22 244078 6524
## 15160 2020-12-03 Maine 23 12554 220
## 15161 2020-12-03 Maryland 24 205716 4764
## 15162 2020-12-03 Massachusetts 25 240907 10874
## 15163 2020-12-03 Michigan 26 410052 10031
## 15164 2020-12-03 Minnesota 27 333685 3843
## 15165 2020-12-03 Mississippi 28 159036 3879
## 15166 2020-12-03 Missouri 29 325519 4274
## 15167 2020-12-03 Montana 30 65242 723
## 15168 2020-12-03 Nebraska 31 135123 1180
## 15169 2020-12-03 Nevada 32 160317 2259
## 15170 2020-12-03 New Hampshire 33 22925 544
## 15171 2020-12-03 New Jersey 34 352835 17209
## 15172 2020-12-03 New Mexico 35 102873 1673
## 15173 2020-12-03 New York 36 678869 34346
## 15174 2020-12-03 North Carolina 37 378370 5454
## 15175 2020-12-03 North Dakota 38 81111 983
## 15176 2020-12-03 Northern Mariana Islands 69 106 2
## 15177 2020-12-03 Ohio 39 446859 6753
## 15178 2020-12-03 Oklahoma 40 204048 1836
## 15179 2020-12-03 Oregon 41 79294 974
## 15180 2020-12-03 Pennsylvania 42 392610 11008
## 15181 2020-12-03 Puerto Rico 72 87720 1155
## 15182 2020-12-03 Rhode Island 44 60722 1400
## 15183 2020-12-03 South Carolina 45 223063 4466
## 15184 2020-12-03 South Dakota 46 83348 1033
## 15185 2020-12-03 Tennessee 47 379679 4727
## 15186 2020-12-03 Texas 48 1311751 22645
## 15187 2020-12-03 Utah 49 206255 918
## 15188 2020-12-03 Vermont 50 4642 75
## 15189 2020-12-03 Virgin Islands 78 1589 23
## 15190 2020-12-03 Virginia 51 244503 4147
## 15191 2020-12-03 Washington 53 180125 3040
## 15192 2020-12-03 West Virginia 54 51025 789
## 15193 2020-12-03 Wisconsin 55 426534 3781
## 15194 2020-12-03 Wyoming 56 35078 257
## 15195 2020-12-04 Alabama 1 264199 3831
## 15196 2020-12-04 Alaska 2 35138 135
## 15197 2020-12-04 Arizona 4 355054 6885
## 15198 2020-12-04 Arkansas 5 167137 2586
## 15199 2020-12-04 California 6 1318188 19791
## 15200 2020-12-04 Colorado 8 252960 3375
## 15201 2020-12-04 Connecticut 9 127715 5146
## 15202 2020-12-04 Delaware 10 38398 782
## 15203 2020-12-04 District of Columbia 11 22480 693
## 15204 2020-12-04 Florida 12 1039199 18993
## 15205 2020-12-04 Georgia 13 476181 9443
## 15206 2020-12-04 Guam 66 7928 114
## 15207 2020-12-04 Hawaii 15 18373 254
## 15208 2020-12-04 Idaho 16 108741 1037
## 15209 2020-12-04 Illinois 17 771696 13808
## 15210 2020-12-04 Indiana 18 370091 6122
## 15211 2020-12-04 Iowa 19 241531 2665
## 15212 2020-12-04 Kansas 20 171513 1786
## 15213 2020-12-04 Kentucky 21 198506 2216
## 15214 2020-12-04 Louisiana 22 247177 6548
## 15215 2020-12-04 Maine 23 12844 224
## 15216 2020-12-04 Maryland 24 209512 4790
## 15217 2020-12-04 Massachusetts 25 246398 10910
## 15218 2020-12-04 Michigan 26 419370 10113
## 15219 2020-12-04 Minnesota 27 339032 3904
## 15220 2020-12-04 Mississippi 28 161516 3916
## 15221 2020-12-04 Missouri 29 330445 4375
## 15222 2020-12-04 Montana 30 66494 728
## 15223 2020-12-04 Nebraska 31 136968 1205
## 15224 2020-12-04 Nevada 32 163065 2276
## 15225 2020-12-04 New Hampshire 33 23690 552
## 15226 2020-12-04 New Jersey 34 358498 17255
## 15227 2020-12-04 New Mexico 35 104935 1706
## 15228 2020-12-04 New York 36 690143 34409
## 15229 2020-12-04 North Carolina 37 384165 5505
## 15230 2020-12-04 North Dakota 38 81955 995
## 15231 2020-12-04 Northern Mariana Islands 69 106 2
## 15232 2020-12-04 Ohio 39 456963 6882
## 15233 2020-12-04 Oklahoma 40 208875 1860
## 15234 2020-12-04 Oregon 41 81441 1004
## 15235 2020-12-04 Pennsylvania 42 404699 11189
## 15236 2020-12-04 Puerto Rico 72 88212 1172
## 15237 2020-12-04 Rhode Island 44 62137 1413
## 15238 2020-12-04 South Carolina 45 226013 4496
## 15239 2020-12-04 South Dakota 46 84398 1064
## 15240 2020-12-04 Tennessee 47 383995 4822
## 15241 2020-12-04 Texas 48 1325855 22890
## 15242 2020-12-04 Utah 49 209258 926
## 15243 2020-12-04 Vermont 50 4763 77
## 15244 2020-12-04 Virgin Islands 78 1613 23
## 15245 2020-12-04 Virginia 51 247380 4160
## 15246 2020-12-04 Washington 53 182758 3062
## 15247 2020-12-04 West Virginia 54 52172 799
## 15248 2020-12-04 Wisconsin 55 432217 3847
## 15249 2020-12-04 Wyoming 56 35737 257
## 15250 2020-12-05 Alabama 1 267589 3877
## 15251 2020-12-05 Alaska 2 36083 136
## 15252 2020-12-05 Arizona 4 361186 6940
## 15253 2020-12-05 Arkansas 5 169382 2620
## 15254 2020-12-05 California 6 1343193 19876
## 15255 2020-12-05 Colorado 8 258124 3415
## 15256 2020-12-05 Connecticut 9 127715 5146
## 15257 2020-12-05 Delaware 10 39096 782
## 15258 2020-12-05 District of Columbia 11 22872 695
## 15259 2020-12-05 Florida 12 1049630 19083
## 15260 2020-12-05 Georgia 13 481126 9506
## 15261 2020-12-05 Guam 66 7946 114
## 15262 2020-12-05 Hawaii 15 18484 259
## 15263 2020-12-05 Idaho 16 109764 1037
## 15264 2020-12-05 Illinois 17 781441 14028
## 15265 2020-12-05 Indiana 18 377790 6207
## 15266 2020-12-05 Iowa 19 243385 2682
## 15267 2020-12-05 Kansas 20 171626 1786
## 15268 2020-12-05 Kentucky 21 202135 2241
## 15269 2020-12-05 Louisiana 22 247177 6548
## 15270 2020-12-05 Maine 23 13127 227
## 15271 2020-12-05 Maryland 24 212545 4820
## 15272 2020-12-05 Massachusetts 25 252017 10953
## 15273 2020-12-05 Michigan 26 425496 10313
## 15274 2020-12-05 Minnesota 27 345340 3979
## 15275 2020-12-05 Mississippi 28 163458 3949
## 15276 2020-12-05 Missouri 29 334637 4412
## 15277 2020-12-05 Montana 30 67092 734
## 15278 2020-12-05 Nebraska 31 139103 1208
## 15279 2020-12-05 Nevada 32 166187 2309
## 15280 2020-12-05 New Hampshire 33 24138 559
## 15281 2020-12-05 New Jersey 34 363822 17306
## 15282 2020-12-05 New Mexico 35 106856 1738
## 15283 2020-12-05 New York 36 700902 34488
## 15284 2020-12-05 North Carolina 37 388760 5547
## 15285 2020-12-05 North Dakota 38 82510 1013
## 15286 2020-12-05 Northern Mariana Islands 69 106 2
## 15287 2020-12-05 Ohio 39 467432 6947
## 15288 2020-12-05 Oklahoma 40 213245 1874
## 15289 2020-12-05 Oregon 41 83243 1027
## 15290 2020-12-05 Pennsylvania 42 416073 11331
## 15291 2020-12-05 Puerto Rico 72 89147 1184
## 15292 2020-12-05 Rhode Island 44 62137 1413
## 15293 2020-12-05 South Carolina 45 229235 4517
## 15294 2020-12-05 South Dakota 46 85304 1091
## 15295 2020-12-05 Tennessee 47 388815 4851
## 15296 2020-12-05 Texas 48 1337030 23111
## 15297 2020-12-05 Utah 49 212844 939
## 15298 2020-12-05 Vermont 50 4894 79
## 15299 2020-12-05 Virgin Islands 78 1613 23
## 15300 2020-12-05 Virginia 51 251173 4197
## 15301 2020-12-05 Washington 53 184079 3065
## 15302 2020-12-05 West Virginia 54 53572 829
## 15303 2020-12-05 Wisconsin 55 437918 3938
## 15304 2020-12-05 Wyoming 56 35941 257
## 15305 2020-12-06 Alabama 1 269877 3889
## 15306 2020-12-06 Alaska 2 36847 136
## 15307 2020-12-06 Arizona 4 364276 6950
## 15308 2020-12-06 Arkansas 5 170924 2660
## 15309 2020-12-06 California 6 1371985 19937
## 15310 2020-12-06 Colorado 8 262460 3437
## 15311 2020-12-06 Connecticut 9 127715 5146
## 15312 2020-12-06 Delaware 10 39912 793
## 15313 2020-12-06 District of Columbia 11 23136 697
## 15314 2020-12-06 Florida 12 1058066 19176
## 15315 2020-12-06 Georgia 13 483106 9516
## 15316 2020-12-06 Guam 66 7973 114
## 15317 2020-12-06 Hawaii 15 18581 260
## 15318 2020-12-06 Idaho 16 110553 1040
## 15319 2020-12-06 Illinois 17 788922 14127
## 15320 2020-12-06 Indiana 18 384391 6242
## 15321 2020-12-06 Iowa 19 244689 2717
## 15322 2020-12-06 Kansas 20 171635 1786
## 15323 2020-12-06 Kentucky 21 204772 2250
## 15324 2020-12-06 Louisiana 22 251123 6584
## 15325 2020-12-06 Maine 23 13348 227
## 15326 2020-12-06 Maryland 24 215348 4846
## 15327 2020-12-06 Massachusetts 25 256844 11004
## 15328 2020-12-06 Michigan 26 425844 10313
## 15329 2020-12-06 Minnesota 27 350921 4043
## 15330 2020-12-06 Mississippi 28 164931 3961
## 15331 2020-12-06 Missouri 29 337927 4420
## 15332 2020-12-06 Montana 30 67875 736
## 15333 2020-12-06 Nebraska 31 140318 1219
## 15334 2020-12-06 Nevada 32 168758 2318
## 15335 2020-12-06 New Hampshire 33 24771 564
## 15336 2020-12-06 New Jersey 34 369852 17321
## 15337 2020-12-06 New Mexico 35 108088 1749
## 15338 2020-12-06 New York 36 710612 34552
## 15339 2020-12-06 North Carolina 37 395020 5578
## 15340 2020-12-06 North Dakota 38 82987 1019
## 15341 2020-12-06 Northern Mariana Islands 69 106 2
## 15342 2020-12-06 Ohio 39 475024 6960
## 15343 2020-12-06 Oklahoma 40 216486 1896
## 15344 2020-12-06 Oregon 41 84496 1033
## 15345 2020-12-06 Pennsylvania 42 423828 11389
## 15346 2020-12-06 Puerto Rico 72 90286 1191
## 15347 2020-12-06 Rhode Island 44 62137 1413
## 15348 2020-12-06 South Carolina 45 232099 4566
## 15349 2020-12-06 South Dakota 46 85991 1110
## 15350 2020-12-06 Tennessee 47 391393 4888
## 15351 2020-12-06 Texas 48 1346249 23187
## 15352 2020-12-06 Utah 49 215407 939
## 15353 2020-12-06 Vermont 50 5015 79
## 15354 2020-12-06 Virgin Islands 78 1613 23
## 15355 2020-12-06 Virginia 51 255053 4200
## 15356 2020-12-06 Washington 53 185505 3065
## 15357 2020-12-06 West Virginia 54 54997 838
## 15358 2020-12-06 Wisconsin 55 441067 3956
## 15359 2020-12-06 Wyoming 56 36317 257
## 15360 2020-12-07 Alabama 1 272229 3892
## 15361 2020-12-07 Alaska 2 37350 139
## 15362 2020-12-07 Arizona 4 366364 6950
## 15363 2020-12-07 Arkansas 5 172042 2713
## 15364 2020-12-07 California 6 1399239 20052
## 15365 2020-12-07 Colorado 8 266670 3466
## 15366 2020-12-07 Connecticut 9 135844 5224
## 15367 2020-12-07 Delaware 10 40711 793
## 15368 2020-12-07 District of Columbia 11 23319 701
## 15369 2020-12-07 Florida 12 1065777 19281
## 15370 2020-12-07 Georgia 13 488225 9559
## 15371 2020-12-07 Guam 66 7988 114
## 15372 2020-12-07 Hawaii 15 18659 260
## 15373 2020-12-07 Idaho 16 112433 1062
## 15374 2020-12-07 Illinois 17 797789 14234
## 15375 2020-12-07 Indiana 18 390048 6284
## 15376 2020-12-07 Iowa 19 245985 2723
## 15377 2020-12-07 Kansas 20 177389 1856
## 15378 2020-12-07 Kentucky 21 207043 2276
## 15379 2020-12-07 Louisiana 22 252136 6607
## 15380 2020-12-07 Maine 23 13775 227
## 15381 2020-12-07 Maryland 24 217647 4865
## 15382 2020-12-07 Massachusetts 25 259325 11035
## 15383 2020-12-07 Michigan 26 435461 10415
## 15384 2020-12-07 Minnesota 27 356211 4064
## 15385 2020-12-07 Mississippi 28 166194 3961
## 15386 2020-12-07 Missouri 29 342244 4452
## 15387 2020-12-07 Montana 30 68651 743
## 15388 2020-12-07 Nebraska 31 141918 1251
## 15389 2020-12-07 Nevada 32 171159 2326
## 15390 2020-12-07 New Hampshire 33 25816 566
## 15391 2020-12-07 New Jersey 34 373415 17336
## 15392 2020-12-07 New Mexico 35 109947 1756
## 15393 2020-12-07 New York 36 718991 34637
## 15394 2020-12-07 North Carolina 37 399796 5598
## 15395 2020-12-07 North Dakota 38 83348 1028
## 15396 2020-12-07 Northern Mariana Islands 69 109 2
## 15397 2020-12-07 Ohio 39 484297 7023
## 15398 2020-12-07 Oklahoma 40 218389 1911
## 15399 2020-12-07 Oregon 41 85803 1049
## 15400 2020-12-07 Pennsylvania 42 432410 11431
## 15401 2020-12-07 Puerto Rico 72 91237 1202
## 15402 2020-12-07 Rhode Island 44 65818 1448
## 15403 2020-12-07 South Carolina 45 234652 4579
## 15404 2020-12-07 South Dakota 46 86500 1110
## 15405 2020-12-07 Tennessee 47 399323 4953
## 15406 2020-12-07 Texas 48 1361070 23258
## 15407 2020-12-07 Utah 49 217638 949
## 15408 2020-12-07 Vermont 50 5080 81
## 15409 2020-12-07 Virgin Islands 78 1649 23
## 15410 2020-12-07 Virginia 51 258870 4208
## 15411 2020-12-07 Washington 53 191468 3080
## 15412 2020-12-07 West Virginia 54 56128 841
## 15413 2020-12-07 Wisconsin 55 443415 3979
## 15414 2020-12-07 Wyoming 56 36985 280
## 15415 2020-12-08 Alabama 1 276665 3942
## 15416 2020-12-08 Alaska 2 37923 139
## 15417 2020-12-08 Arizona 4 379662 6985
## 15418 2020-12-08 Arkansas 5 174325 2752
## 15419 2020-12-08 California 6 1425501 20238
## 15420 2020-12-08 Colorado 8 270381 3508
## 15421 2020-12-08 Connecticut 9 138258 5242
## 15422 2020-12-08 Delaware 10 41464 803
## 15423 2020-12-08 District of Columbia 11 23589 701
## 15424 2020-12-08 Florida 12 1073762 19377
## 15425 2020-12-08 Georgia 13 493558 9582
## 15426 2020-12-08 Guam 66 7995 114
## 15427 2020-12-08 Hawaii 15 18712 260
## 15428 2020-12-08 Idaho 16 114411 1081
## 15429 2020-12-08 Illinois 17 805794 14392
## 15430 2020-12-08 Indiana 18 395449 6410
## 15431 2020-12-08 Iowa 19 246237 2915
## 15432 2020-12-08 Kansas 20 177780 1856
## 15433 2020-12-08 Kentucky 21 210232 2328
## 15434 2020-12-08 Louisiana 22 254562 6652
## 15435 2020-12-08 Maine 23 14049 239
## 15436 2020-12-08 Maryland 24 220279 4916
## 15437 2020-12-08 Massachusetts 25 263447 11076
## 15438 2020-12-08 Michigan 26 442126 10620
## 15439 2020-12-08 Minnesota 27 359262 4086
## 15440 2020-12-08 Mississippi 28 167926 4017
## 15441 2020-12-08 Missouri 29 346161 4594
## 15442 2020-12-08 Montana 30 69465 763
## 15443 2020-12-08 Nebraska 31 143328 1295
## 15444 2020-12-08 Nevada 32 174050 2368
## 15445 2020-12-08 New Hampshire 33 26623 566
## 15446 2020-12-08 New Jersey 34 378891 17426
## 15447 2020-12-08 New Mexico 35 111191 1789
## 15448 2020-12-08 New York 36 728010 34723
## 15449 2020-12-08 North Carolina 37 404520 5642
## 15450 2020-12-08 North Dakota 38 85688 1064
## 15451 2020-12-08 Northern Mariana Islands 69 111 2
## 15452 2020-12-08 Ohio 39 510018 7103
## 15453 2020-12-08 Oklahoma 40 220686 1922
## 15454 2020-12-08 Oregon 41 87082 1082
## 15455 2020-12-08 Pennsylvania 42 442528 11592
## 15456 2020-12-08 Puerto Rico 72 91931 1205
## 15457 2020-12-08 Rhode Island 44 67067 1470
## 15458 2020-12-08 South Carolina 45 236954 4585
## 15459 2020-12-08 South Dakota 46 87038 1111
## 15460 2020-12-08 Tennessee 47 405149 5051
## 15461 2020-12-08 Texas 48 1374960 23439
## 15462 2020-12-08 Utah 49 219971 972
## 15463 2020-12-08 Vermont 50 5180 85
## 15464 2020-12-08 Virgin Islands 78 1680 23
## 15465 2020-12-08 Virginia 51 262730 4260
## 15466 2020-12-08 Washington 53 194788 3102
## 15467 2020-12-08 West Virginia 54 57060 870
## 15468 2020-12-08 Wisconsin 55 448009 4059
## 15469 2020-12-08 Wyoming 56 37475 280
## 15470 2020-12-09 Alabama 1 280187 3985
## 15471 2020-12-09 Alaska 2 38510 143
## 15472 2020-12-09 Arizona 4 384241 7081
## 15473 2020-12-09 Arkansas 5 176652 2786
## 15474 2020-12-09 California 6 1457273 20466
## 15475 2020-12-09 Colorado 8 274354 3671
## 15476 2020-12-09 Connecticut 9 140548 5285
## 15477 2020-12-09 Delaware 10 42393 803
## 15478 2020-12-09 District of Columbia 11 23854 704
## 15479 2020-12-09 Florida 12 1083354 19461
## 15480 2020-12-09 Georgia 13 499299 9630
## 15481 2020-12-09 Guam 66 8008 114
## 15482 2020-12-09 Hawaii 15 18785 264
## 15483 2020-12-09 Idaho 16 116677 1124
## 15484 2020-12-09 Illinois 17 813990 14621
## 15485 2020-12-09 Indiana 18 401219 6506
## 15486 2020-12-09 Iowa 19 248782 3017
## 15487 2020-12-09 Kansas 20 183404 1941
## 15488 2020-12-09 Kentucky 21 212997 2359
## 15489 2020-12-09 Louisiana 22 258914 6684
## 15490 2020-12-09 Maine 23 14454 246
## 15491 2020-12-09 Maryland 24 222971 4962
## 15492 2020-12-09 Massachusetts 25 269412 11166
## 15493 2020-12-09 Michigan 26 447434 10699
## 15494 2020-12-09 Minnesota 27 363778 4168
## 15495 2020-12-09 Mississippi 28 170672 4041
## 15496 2020-12-09 Missouri 29 349046 4640
## 15497 2020-12-09 Montana 30 70191 771
## 15498 2020-12-09 Nebraska 31 144755 1311
## 15499 2020-12-09 Nevada 32 176674 2395
## 15500 2020-12-09 New Hampshire 33 27592 570
## 15501 2020-12-09 New Jersey 34 383354 17542
## 15502 2020-12-09 New Mexico 35 112950 1823
## 15503 2020-12-09 New York 36 738947 34799
## 15504 2020-12-09 North Carolina 37 412140 5704
## 15505 2020-12-09 North Dakota 38 86149 1081
## 15506 2020-12-09 Northern Mariana Islands 69 113 2
## 15507 2020-12-09 Ohio 39 520112 7187
## 15508 2020-12-09 Oklahoma 40 222993 1945
## 15509 2020-12-09 Oregon 41 88308 1112
## 15510 2020-12-09 Pennsylvania 42 451154 11839
## 15511 2020-12-09 Puerto Rico 72 92577 1219
## 15512 2020-12-09 Rhode Island 44 68299 1484
## 15513 2020-12-09 South Carolina 45 239444 4612
## 15514 2020-12-09 South Dakota 46 88023 1147
## 15515 2020-12-09 Tennessee 47 413043 5113
## 15516 2020-12-09 Texas 48 1390227 23727
## 15517 2020-12-09 Utah 49 222545 995
## 15518 2020-12-09 Vermont 50 5285 86
## 15519 2020-12-09 Virgin Islands 78 1698 23
## 15520 2020-12-09 Virginia 51 267128 4281
## 15521 2020-12-09 Washington 53 197973 3146
## 15522 2020-12-09 West Virginia 54 58462 901
## 15523 2020-12-09 Wisconsin 55 452180 4149
## 15524 2020-12-09 Wyoming 56 37885 299
## 15525 2020-12-10 Alabama 1 284922 4034
## 15526 2020-12-10 Alaska 2 39146 148
## 15527 2020-12-10 Arizona 4 390047 7173
## 15528 2020-12-10 Arkansas 5 178854 2820
## 15529 2020-12-10 California 6 1491132 20636
## 15530 2020-12-10 Colorado 8 278916 3795
## 15531 2020-12-10 Connecticut 9 142979 5327
## 15532 2020-12-10 Delaware 10 43036 806
## 15533 2020-12-10 District of Columbia 11 24098 708
## 15534 2020-12-10 Florida 12 1094689 19590
## 15535 2020-12-10 Georgia 13 506802 9683
## 15536 2020-12-10 Guam 66 8021 116
## 15537 2020-12-10 Hawaii 15 18901 266
## 15538 2020-12-10 Idaho 16 118352 1145
## 15539 2020-12-10 Illinois 17 825136 14852
## 15540 2020-12-10 Indiana 18 407755 6603
## 15541 2020-12-10 Iowa 19 251027 3116
## 15542 2020-12-10 Kansas 20 183750 1941
## 15543 2020-12-10 Kentucky 21 217112 2387
## 15544 2020-12-10 Louisiana 22 261329 6724
## 15545 2020-12-10 Maine 23 14861 246
## 15546 2020-12-10 Maryland 24 226173 5012
## 15547 2020-12-10 Massachusetts 25 274781 11209
## 15548 2020-12-10 Michigan 26 453792 10895
## 15549 2020-12-10 Minnesota 27 367277 4257
## 15550 2020-12-10 Mississippi 28 172955 4083
## 15551 2020-12-10 Missouri 29 353082 4690
## 15552 2020-12-10 Montana 30 70954 786
## 15553 2020-12-10 Nebraska 31 146456 1358
## 15554 2020-12-10 Nevada 32 179409 2448
## 15555 2020-12-10 New Hampshire 33 28273 584
## 15556 2020-12-10 New Jersey 34 388474 17608
## 15557 2020-12-10 New Mexico 35 114731 1846
## 15558 2020-12-10 New York 36 749204 34884
## 15559 2020-12-10 North Carolina 37 417951 5752
## 15560 2020-12-10 North Dakota 38 87210 1109
## 15561 2020-12-10 Northern Mariana Islands 69 113 2
## 15562 2020-12-10 Ohio 39 531850 7298
## 15563 2020-12-10 Oklahoma 40 225453 1980
## 15564 2020-12-10 Oregon 41 89838 1124
## 15565 2020-12-10 Pennsylvania 42 463175 12066
## 15566 2020-12-10 Puerto Rico 72 93073 1238
## 15567 2020-12-10 Rhode Island 44 69247 1498
## 15568 2020-12-10 South Carolina 45 241686 4627
## 15569 2020-12-10 South Dakota 46 88727 1177
## 15570 2020-12-10 Tennessee 47 418902 5183
## 15571 2020-12-10 Texas 48 1403359 23967
## 15572 2020-12-10 Utah 49 225946 1016
## 15573 2020-12-10 Vermont 50 5413 89
## 15574 2020-12-10 Virgin Islands 78 1733 23
## 15575 2020-12-10 Virginia 51 271043 4335
## 15576 2020-12-10 Washington 53 201179 3075
## 15577 2020-12-10 West Virginia 54 59695 921
## 15578 2020-12-10 Wisconsin 55 456889 4216
## 15579 2020-12-10 Wyoming 56 38223 299
## 15580 2020-12-11 Alabama 1 288775 4086
## 15581 2020-12-11 Alaska 2 39773 151
## 15582 2020-12-11 Arizona 4 398150 7250
## 15583 2020-12-11 Arkansas 5 181624 2875
## 15584 2020-12-11 California 6 1528237 20854
## 15585 2020-12-11 Colorado 8 283571 3858
## 15586 2020-12-11 Connecticut 9 146761 5363
## 15587 2020-12-11 Delaware 10 43818 807
## 15588 2020-12-11 District of Columbia 11 24357 709
## 15589 2020-12-11 Florida 12 1106388 19713
## 15590 2020-12-11 Georgia 13 512715 9738
## 15591 2020-12-11 Guam 66 8048 116
## 15592 2020-12-11 Hawaii 15 19029 267
## 15593 2020-12-11 Idaho 16 119934 1169
## 15594 2020-12-11 Illinois 17 834668 15076
## 15595 2020-12-11 Indiana 18 414961 6673
## 15596 2020-12-11 Iowa 19 253612 3193
## 15597 2020-12-11 Kansas 20 188610 2072
## 15598 2020-12-11 Kentucky 21 220898 2416
## 15599 2020-12-11 Louisiana 22 264191 6767
## 15600 2020-12-11 Maine 23 15206 250
## 15601 2020-12-11 Maryland 24 228792 5064
## 15602 2020-12-11 Massachusetts 25 280436 11257
## 15603 2020-12-11 Michigan 26 459398 10961
## 15604 2020-12-11 Minnesota 27 371027 4351
## 15605 2020-12-11 Mississippi 28 175282 4124
## 15606 2020-12-11 Missouri 29 355147 4704
## 15607 2020-12-11 Montana 30 71931 805
## 15608 2020-12-11 Nebraska 31 147727 1377
## 15609 2020-12-11 Nevada 32 181922 2488
## 15610 2020-12-11 New Hampshire 33 29460 590
## 15611 2020-12-11 New Jersey 34 392124 17662
## 15612 2020-12-11 New Mexico 35 116565 1889
## 15613 2020-12-11 New York 36 759765 34983
## 15614 2020-12-11 North Carolina 37 424991 5791
## 15615 2020-12-11 North Dakota 38 87220 1136
## 15616 2020-12-11 Northern Mariana Islands 69 113 2
## 15617 2020-12-11 Ohio 39 542209 7426
## 15618 2020-12-11 Oklahoma 40 229353 2007
## 15619 2020-12-11 Oregon 41 91434 1147
## 15620 2020-12-11 Pennsylvania 42 475844 12298
## 15621 2020-12-11 Puerto Rico 72 94617 1249
## 15622 2020-12-11 Rhode Island 44 70818 1509
## 15623 2020-12-11 South Carolina 45 245226 4673
## 15624 2020-12-11 South Dakota 46 89672 1210
## 15625 2020-12-11 Tennessee 47 425954 5271
## 15626 2020-12-11 Texas 48 1461605 24208
## 15627 2020-12-11 Utah 49 228146 1027
## 15628 2020-12-11 Vermont 50 5541 93
## 15629 2020-12-11 Virgin Islands 78 1791 23
## 15630 2020-12-11 Virginia 51 274438 4370
## 15631 2020-12-11 Washington 53 204484 3097
## 15632 2020-12-11 West Virginia 54 60637 938
## 15633 2020-12-11 Wisconsin 55 461367 4272
## 15634 2020-12-11 Wyoming 56 38785 321
## 15635 2020-12-12 Alabama 1 292841 4102
## 15636 2020-12-12 Alaska 2 40293 169
## 15637 2020-12-12 Arizona 4 405656 7340
## 15638 2020-12-12 Arkansas 5 184252 2911
## 15639 2020-12-12 California 6 1554920 20958
## 15640 2020-12-12 Colorado 8 287364 3916
## 15641 2020-12-12 Connecticut 9 146761 5363
## 15642 2020-12-12 Delaware 10 44876 815
## 15643 2020-12-12 District of Columbia 11 24643 713
## 15644 2020-12-12 Florida 12 1116965 19784
## 15645 2020-12-12 Georgia 13 518973 9779
## 15646 2020-12-12 Guam 66 8059 118
## 15647 2020-12-12 Hawaii 15 19225 269
## 15648 2020-12-12 Idaho 16 120703 1173
## 15649 2020-12-12 Illinois 17 843328 15232
## 15650 2020-12-12 Indiana 18 422368 6758
## 15651 2020-12-12 Iowa 19 255009 3208
## 15652 2020-12-12 Kansas 20 188610 2072
## 15653 2020-12-12 Kentucky 21 224155 2446
## 15654 2020-12-12 Louisiana 22 264191 6767
## 15655 2020-12-12 Maine 23 15620 257
## 15656 2020-12-12 Maryland 24 232172 5100
## 15657 2020-12-12 Massachusetts 25 285725 11307
## 15658 2020-12-12 Michigan 26 463961 11186
## 15659 2020-12-12 Minnesota 27 375457 4418
## 15660 2020-12-12 Mississippi 28 177947 4180
## 15661 2020-12-12 Missouri 29 360623 4754
## 15662 2020-12-12 Montana 30 72659 816
## 15663 2020-12-12 Nebraska 31 148467 1395
## 15664 2020-12-12 Nevada 32 184527 2530
## 15665 2020-12-12 New Hampshire 33 30244 600
## 15666 2020-12-12 New Jersey 34 398364 17732
## 15667 2020-12-12 New Mexico 35 118358 1913
## 15668 2020-12-12 New York 36 770804 35074
## 15669 2020-12-12 North Carolina 37 430325 5831
## 15670 2020-12-12 North Dakota 38 87596 1158
## 15671 2020-12-12 Northern Mariana Islands 69 113 2
## 15672 2020-12-12 Ohio 39 553461 7477
## 15673 2020-12-12 Oklahoma 40 233336 2042
## 15674 2020-12-12 Oregon 41 92839 1155
## 15675 2020-12-12 Pennsylvania 42 485901 12489
## 15676 2020-12-12 Puerto Rico 72 95338 1266
## 15677 2020-12-12 Rhode Island 44 70818 1509
## 15678 2020-12-12 South Carolina 45 248798 4685
## 15679 2020-12-12 South Dakota 46 90407 1243
## 15680 2020-12-12 Tennessee 47 432246 5344
## 15681 2020-12-12 Texas 48 1473080 24400
## 15682 2020-12-12 Utah 49 231821 1039
## 15683 2020-12-12 Vermont 50 5626 95
## 15684 2020-12-12 Virgin Islands 78 1791 23
## 15685 2020-12-12 Virginia 51 278615 4409
## 15686 2020-12-12 Washington 53 207399 3043
## 15687 2020-12-12 West Virginia 54 62151 966
## 15688 2020-12-12 Wisconsin 55 465991 4329
## 15689 2020-12-12 Wyoming 56 38907 321
## 15690 2020-12-13 Alabama 1 295631 4102
## 15691 2020-12-13 Alaska 2 40934 169
## 15692 2020-12-13 Arizona 4 408646 7357
## 15693 2020-12-13 Arkansas 5 185702 2945
## 15694 2020-12-13 California 6 1590726 21043
## 15695 2020-12-13 Colorado 8 289679 3982
## 15696 2020-12-13 Connecticut 9 146761 5363
## 15697 2020-12-13 Delaware 10 45460 816
## 15698 2020-12-13 District of Columbia 11 24874 715
## 15699 2020-12-13 Florida 12 1125923 19865
## 15700 2020-12-13 Georgia 13 523580 9781
## 15701 2020-12-13 Guam 66 8075 119
## 15702 2020-12-13 Hawaii 15 19302 272
## 15703 2020-12-13 Idaho 16 121243 1179
## 15704 2020-12-13 Illinois 17 850412 15340
## 15705 2020-12-13 Indiana 18 428275 6805
## 15706 2020-12-13 Iowa 19 256249 3209
## 15707 2020-12-13 Kansas 20 188660 2072
## 15708 2020-12-13 Kentucky 21 226604 2453
## 15709 2020-12-13 Louisiana 22 268613 6818
## 15710 2020-12-13 Maine 23 15923 257
## 15711 2020-12-13 Maryland 24 234975 5117
## 15712 2020-12-13 Massachusetts 25 290578 11349
## 15713 2020-12-13 Michigan 26 464199 11186
## 15714 2020-12-13 Minnesota 27 378882 4503
## 15715 2020-12-13 Mississippi 28 179447 4199
## 15716 2020-12-13 Missouri 29 363246 4761
## 15717 2020-12-13 Montana 30 73303 818
## 15718 2020-12-13 Nebraska 31 149695 1399
## 15719 2020-12-13 Nevada 32 187502 2545
## 15720 2020-12-13 New Hampshire 33 30956 603
## 15721 2020-12-13 New Jersey 34 402518 17751
## 15722 2020-12-13 New Mexico 35 119800 1957
## 15723 2020-12-13 New York 36 780831 35198
## 15724 2020-12-13 North Carolina 37 436655 5855
## 15725 2020-12-13 North Dakota 38 87877 1158
## 15726 2020-12-13 Northern Mariana Islands 69 113 2
## 15727 2020-12-13 Ohio 39 562727 7492
## 15728 2020-12-13 Oklahoma 40 237668 2064
## 15729 2020-12-13 Oregon 41 93853 1158
## 15730 2020-12-13 Pennsylvania 42 495906 12613
## 15731 2020-12-13 Puerto Rico 72 96046 1272
## 15732 2020-12-13 Rhode Island 44 70818 1509
## 15733 2020-12-13 South Carolina 45 252206 4739
## 15734 2020-12-13 South Dakota 46 91038 1259
## 15735 2020-12-13 Tennessee 47 442707 5406
## 15736 2020-12-13 Texas 48 1479805 24501
## 15737 2020-12-13 Utah 49 233904 1055
## 15738 2020-12-13 Vermont 50 5753 95
## 15739 2020-12-13 Virgin Islands 78 1791 23
## 15740 2020-12-13 Virginia 51 281909 4411
## 15741 2020-12-13 Washington 53 209385 3045
## 15742 2020-12-13 West Virginia 54 63217 968
## 15743 2020-12-13 Wisconsin 55 468956 4344
## 15744 2020-12-13 Wyoming 56 39360 321
## 15745 2020-12-14 Alabama 1 297895 4102
## 15746 2020-12-14 Alaska 2 41363 169
## 15747 2020-12-14 Arizona 4 420459 7358
## 15748 2020-12-14 Arkansas 5 187057 2990
## 15749 2020-12-14 California 6 1620916 21196
## 15750 2020-12-14 Colorado 8 291645 4015
## 15751 2020-12-14 Connecticut 9 153992 5444
## 15752 2020-12-14 Delaware 10 46457 816
## 15753 2020-12-14 District of Columbia 11 25038 716
## 15754 2020-12-14 Florida 12 1134375 20002
## 15755 2020-12-14 Georgia 13 527157 9803
## 15756 2020-12-14 Guam 66 8106 120
## 15757 2020-12-14 Hawaii 15 19489 272
## 15758 2020-12-14 Idaho 16 122679 1199
## 15759 2020-12-14 Illinois 17 857860 15458
## 15760 2020-12-14 Indiana 18 433242 6840
## 15761 2020-12-14 Iowa 19 256902 3269
## 15762 2020-12-14 Kansas 20 193109 2109
## 15763 2020-12-14 Kentucky 21 228668 2472
## 15764 2020-12-14 Louisiana 22 269643 6845
## 15765 2020-12-14 Maine 23 16349 259
## 15766 2020-12-14 Maryland 24 237215 5142
## 15767 2020-12-14 Massachusetts 25 294231 11388
## 15768 2020-12-14 Michigan 26 471738 11282
## 15769 2020-12-14 Minnesota 27 381900 4521
## 15770 2020-12-14 Mississippi 28 181095 4204
## 15771 2020-12-14 Missouri 29 367510 4787
## 15772 2020-12-14 Montana 30 73356 818
## 15773 2020-12-14 Nebraska 31 150322 1442
## 15774 2020-12-14 Nevada 32 189805 2557
## 15775 2020-12-14 New Hampshire 33 31875 604
## 15776 2020-12-14 New Jersey 34 407316 17775
## 15777 2020-12-14 New Mexico 35 121299 1978
## 15778 2020-12-14 New York 36 789815 35288
## 15779 2020-12-14 North Carolina 37 441721 5899
## 15780 2020-12-14 North Dakota 38 88073 1163
## 15781 2020-12-14 Northern Mariana Islands 69 113 2
## 15782 2020-12-14 Ohio 39 570602 7551
## 15783 2020-12-14 Oklahoma 40 239767 2072
## 15784 2020-12-14 Oregon 41 95042 1168
## 15785 2020-12-14 Pennsylvania 42 505422 12668
## 15786 2020-12-14 Puerto Rico 72 96600 1282
## 15787 2020-12-14 Rhode Island 44 74071 1555
## 15788 2020-12-14 South Carolina 45 254776 4751
## 15789 2020-12-14 South Dakota 46 91354 1259
## 15790 2020-12-14 Tennessee 47 452476 5484
## 15791 2020-12-14 Texas 48 1493407 24582
## 15792 2020-12-14 Utah 49 235872 1065
## 15793 2020-12-14 Vermont 50 5857 96
## 15794 2020-12-14 Virgin Islands 78 1807 23
## 15795 2020-12-14 Virginia 51 285149 4414
## 15796 2020-12-14 Washington 53 212342 3084
## 15797 2020-12-14 West Virginia 54 64394 978
## 15798 2020-12-14 Wisconsin 55 471285 4359
## 15799 2020-12-14 Wyoming 56 39775 321
## 15800 2020-12-15 Alabama 1 301533 4124
## 15801 2020-12-15 Alaska 2 41645 172
## 15802 2020-12-15 Arizona 4 427121 7428
## 15803 2020-12-15 Arkansas 5 189198 3016
## 15804 2020-12-15 California 6 1655166 21483
## 15805 2020-12-15 Colorado 8 295558 4131
## 15806 2020-12-15 Connecticut 9 155462 5466
## 15807 2020-12-15 Delaware 10 47142 826
## 15808 2020-12-15 District of Columbia 11 25339 720
## 15809 2020-12-15 Florida 12 1143786 20081
## 15810 2020-12-15 Georgia 13 534488 9856
## 15811 2020-12-15 Guam 66 8118 120
## 15812 2020-12-15 Hawaii 15 19541 272
## 15813 2020-12-15 Idaho 16 124286 1219
## 15814 2020-12-15 Illinois 17 865261 15591
## 15815 2020-12-15 Indiana 18 437513 6968
## 15816 2020-12-15 Iowa 19 258253 3337
## 15817 2020-12-15 Kansas 20 193555 2109
## 15818 2020-12-15 Kentucky 21 231287 2499
## 15819 2020-12-15 Louisiana 22 272276 6895
## 15820 2020-12-15 Maine 23 16760 265
## 15821 2020-12-15 Maryland 24 239694 5206
## 15822 2020-12-15 Massachusetts 25 298160 11443
## 15823 2020-12-15 Michigan 26 477174 11488
## 15824 2020-12-15 Minnesota 27 384223 4542
## 15825 2020-12-15 Mississippi 28 183300 4252
## 15826 2020-12-15 Missouri 29 370869 4959
## 15827 2020-12-15 Montana 30 74160 826
## 15828 2020-12-15 Nebraska 31 151901 1464
## 15829 2020-12-15 Nevada 32 192109 2609
## 15830 2020-12-15 New Hampshire 33 32545 604
## 15831 2020-12-15 New Jersey 34 411282 17872
## 15832 2020-12-15 New Mexico 35 122557 2006
## 15833 2020-12-15 New York 36 799551 35425
## 15834 2020-12-15 North Carolina 37 447303 5926
## 15835 2020-12-15 North Dakota 38 88401 1176
## 15836 2020-12-15 Northern Mariana Islands 69 113 2
## 15837 2020-12-15 Ohio 39 579357 7654
## 15838 2020-12-15 Oklahoma 40 241991 2086
## 15839 2020-12-15 Oregon 41 96093 1213
## 15840 2020-12-15 Pennsylvania 42 515009 12930
## 15841 2020-12-15 Puerto Rico 72 97034 1294
## 15842 2020-12-15 Rhode Island 44 75237 1570
## 15843 2020-12-15 South Carolina 45 257320 4756
## 15844 2020-12-15 South Dakota 46 91699 1261
## 15845 2020-12-15 Tennessee 47 460454 5557
## 15846 2020-12-15 Texas 48 1513068 24796
## 15847 2020-12-15 Utah 49 237787 1078
## 15848 2020-12-15 Vermont 50 5923 100
## 15849 2020-12-15 Virgin Islands 78 1828 23
## 15850 2020-12-15 Virginia 51 288309 4470
## 15851 2020-12-15 Washington 53 214085 3123
## 15852 2020-12-15 West Virginia 54 65708 1012
## 15853 2020-12-15 Wisconsin 55 475340 4412
## 15854 2020-12-15 Wyoming 56 40064 328
## 15855 2020-12-16 Alabama 1 305640 4198
## 15856 2020-12-16 Alaska 2 42256 174
## 15857 2020-12-16 Arizona 4 431330 7558
## 15858 2020-12-16 Arkansas 5 191504 3074
## 15859 2020-12-16 California 6 1716108 21881
## 15860 2020-12-16 Colorado 8 298492 4192
## 15861 2020-12-16 Connecticut 9 157781 5506
## 15862 2020-12-16 Delaware 10 47929 833
## 15863 2020-12-16 District of Columbia 11 25602 720
## 15864 2020-12-16 Florida 12 1155327 20203
## 15865 2020-12-16 Georgia 13 541086 9913
## 15866 2020-12-16 Guam 66 8137 120
## 15867 2020-12-16 Hawaii 15 19645 276
## 15868 2020-12-16 Idaho 16 125834 1247
## 15869 2020-12-16 Illinois 17 872294 15780
## 15870 2020-12-16 Indiana 18 443734 7101
## 15871 2020-12-16 Iowa 19 260784 3354
## 15872 2020-12-16 Kansas 20 197903 2253
## 15873 2020-12-16 Kentucky 21 234207 2529
## 15874 2020-12-16 Louisiana 22 275545 6933
## 15875 2020-12-16 Maine 23 17311 267
## 15876 2020-12-16 Maryland 24 242057 5270
## 15877 2020-12-16 Massachusetts 25 304112 11513
## 15878 2020-12-16 Michigan 26 481772 11582
## 15879 2020-12-16 Minnesota 27 386471 4634
## 15880 2020-12-16 Mississippi 28 185643 4294
## 15881 2020-12-16 Missouri 29 374010 5043
## 15882 2020-12-16 Montana 30 74764 836
## 15883 2020-12-16 Nebraska 31 153244 1472
## 15884 2020-12-16 Nevada 32 194461 2659
## 15885 2020-12-16 New Hampshire 33 33433 625
## 15886 2020-12-16 New Jersey 34 416983 18003
## 15887 2020-12-16 New Mexico 35 124357 2049
## 15888 2020-12-16 New York 36 808929 35522
## 15889 2020-12-16 North Carolina 37 453628 6030
## 15890 2020-12-16 North Dakota 38 88692 1201
## 15891 2020-12-16 Northern Mariana Islands 69 113 2
## 15892 2020-12-16 Ohio 39 584766 7777
## 15893 2020-12-16 Oklahoma 40 245229 2128
## 15894 2020-12-16 Oregon 41 97625 1267
## 15895 2020-12-16 Pennsylvania 42 525199 13200
## 15896 2020-12-16 Puerto Rico 72 97301 1312
## 15897 2020-12-16 Rhode Island 44 76209 1590
## 15898 2020-12-16 South Carolina 45 260119 4800
## 15899 2020-12-16 South Dakota 46 92604 1300
## 15900 2020-12-16 Tennessee 47 471348 5610
## 15901 2020-12-16 Texas 48 1534822 25078
## 15902 2020-12-16 Utah 49 240715 1102
## 15903 2020-12-16 Vermont 50 6009 105
## 15904 2020-12-16 Virgin Islands 78 1828 23
## 15905 2020-12-16 Virginia 51 292240 4508
## 15906 2020-12-16 Washington 53 215310 3139
## 15907 2020-12-16 West Virginia 54 66849 1039
## 15908 2020-12-16 Wisconsin 55 478162 4499
## 15909 2020-12-16 Wyoming 56 40310 328
## 15910 2020-12-17 Alabama 1 310335 4254
## 15911 2020-12-17 Alaska 2 42639 176
## 15912 2020-12-17 Arizona 4 438514 7711
## 15913 2020-12-17 Arkansas 5 194543 3112
## 15914 2020-12-17 California 6 1761430 22155
## 15915 2020-12-17 Colorado 8 302086 4265
## 15916 2020-12-17 Connecticut 9 160102 5552
## 15917 2020-12-17 Delaware 10 48768 845
## 15918 2020-12-17 District of Columbia 11 25830 725
## 15919 2020-12-17 Florida 12 1168475 20304
## 15920 2020-12-17 Georgia 13 548646 9974
## 15921 2020-12-17 Guam 66 8152 120
## 15922 2020-12-17 Hawaii 15 19781 278
## 15923 2020-12-17 Idaho 16 127224 1266
## 15924 2020-12-17 Illinois 17 881229 15987
## 15925 2020-12-17 Indiana 18 450074 7180
## 15926 2020-12-17 Iowa 19 262210 3451
## 15927 2020-12-17 Kansas 20 198189 2253
## 15928 2020-12-17 Kentucky 21 237160 2575
## 15929 2020-12-17 Louisiana 22 279321 6964
## 15930 2020-12-17 Maine 23 17901 276
## 15931 2020-12-17 Maryland 24 244247 5319
## 15932 2020-12-17 Massachusetts 25 309247 11558
## 15933 2020-12-17 Michigan 26 486375 11793
## 15934 2020-12-17 Minnesota 27 389230 4717
## 15935 2020-12-17 Mississippi 28 187904 4320
## 15936 2020-12-17 Missouri 29 378014 5101
## 15937 2020-12-17 Montana 30 75545 849
## 15938 2020-12-17 Nebraska 31 154425 1482
## 15939 2020-12-17 Nevada 32 197059 2680
## 15940 2020-12-17 New Hampshire 33 34264 629
## 15941 2020-12-17 New Jersey 34 421238 18080
## 15942 2020-12-17 New Mexico 35 126045 2103
## 15943 2020-12-17 New York 36 819427 35647
## 15944 2020-12-17 North Carolina 37 458739 6120
## 15945 2020-12-17 North Dakota 38 89069 1210
## 15946 2020-12-17 Northern Mariana Islands 69 113 2
## 15947 2020-12-17 Ohio 39 596178 7894
## 15948 2020-12-17 Oklahoma 40 248204 2144
## 15949 2020-12-17 Oregon 41 98937 1284
## 15950 2020-12-17 Pennsylvania 42 535231 13442
## 15951 2020-12-17 Puerto Rico 72 98366 1323
## 15952 2020-12-17 Rhode Island 44 77290 1602
## 15953 2020-12-17 South Carolina 45 262774 4843
## 15954 2020-12-17 South Dakota 46 93197 1301
## 15955 2020-12-17 Tennessee 47 480225 5783
## 15956 2020-12-17 Texas 48 1551333 25336
## 15957 2020-12-17 Utah 49 243918 1126
## 15958 2020-12-17 Vermont 50 6149 105
## 15959 2020-12-17 Virgin Islands 78 1878 23
## 15960 2020-12-17 Virginia 51 296093 4553
## 15961 2020-12-17 Washington 53 220628 3170
## 15962 2020-12-17 West Virginia 54 68485 1071
## 15963 2020-12-17 Wisconsin 55 482443 4566
## 15964 2020-12-17 Wyoming 56 40593 351
## 15965 2020-12-18 Alabama 1 315683 4296
## 15966 2020-12-18 Alaska 2 43132 176
## 15967 2020-12-18 Arizona 4 444038 7819
## 15968 2020-12-18 Arkansas 5 197421 3139
## 15969 2020-12-18 California 6 1809673 22496
## 15970 2020-12-18 Colorado 8 305622 4323
## 15971 2020-12-18 Connecticut 9 162782 5581
## 15972 2020-12-18 Delaware 10 49109 854
## 15973 2020-12-18 District of Columbia 11 26104 728
## 15974 2020-12-18 Florida 12 1181475 20400
## 15975 2020-12-18 Georgia 13 556615 10009
## 15976 2020-12-18 Guam 66 8162 120
## 15977 2020-12-18 Hawaii 15 19937 279
## 15978 2020-12-18 Idaho 16 128498 1280
## 15979 2020-12-18 Illinois 17 888478 16206
## 15980 2020-12-18 Indiana 18 456028 7265
## 15981 2020-12-18 Iowa 19 264729 3451
## 15982 2020-12-18 Kansas 20 203646 2341
## 15983 2020-12-18 Kentucky 21 240345 2618
## 15984 2020-12-18 Louisiana 22 282434 6994
## 15985 2020-12-18 Maine 23 18337 281
## 15986 2020-12-18 Maryland 24 246816 5358
## 15987 2020-12-18 Massachusetts 25 314926 11610
## 15988 2020-12-18 Michigan 26 490881 11861
## 15989 2020-12-18 Minnesota 27 391948 4782
## 15990 2020-12-18 Mississippi 28 190411 4354
## 15991 2020-12-18 Missouri 29 382181 5170
## 15992 2020-12-18 Montana 30 76056 855
## 15993 2020-12-18 Nebraska 31 155764 1500
## 15994 2020-12-18 Nevada 32 200032 2728
## 15995 2020-12-18 New Hampshire 33 34960 638
## 15996 2020-12-18 New Jersey 34 425134 18124
## 15997 2020-12-18 New Mexico 35 127500 2128
## 15998 2020-12-18 New York 36 832033 35775
## 15999 2020-12-18 North Carolina 37 468195 6172
## 16000 2020-12-18 North Dakota 38 89563 1231
## 16001 2020-12-18 Northern Mariana Islands 69 115 2
## 16002 2020-12-18 Ohio 39 605862 7967
## 16003 2020-12-18 Oklahoma 40 251760 2161
## 16004 2020-12-18 Oregon 41 100309 1306
## 16005 2020-12-18 Pennsylvania 42 544417 13664
## 16006 2020-12-18 Puerto Rico 72 99747 1333
## 16007 2020-12-18 Rhode Island 44 77812 1625
## 16008 2020-12-18 South Carolina 45 267076 4872
## 16009 2020-12-18 South Dakota 46 93772 1330
## 16010 2020-12-18 Tennessee 47 490304 5897
## 16011 2020-12-18 Texas 48 1570679 25608
## 16012 2020-12-18 Utah 49 246562 1140
## 16013 2020-12-18 Vermont 50 6243 107
## 16014 2020-12-18 Virgin Islands 78 1900 23
## 16015 2020-12-18 Virginia 51 299388 4598
## 16016 2020-12-18 Washington 53 224594 3168
## 16017 2020-12-18 West Virginia 54 69751 1091
## 16018 2020-12-18 Wisconsin 55 486364 4635
## 16019 2020-12-18 Wyoming 56 41359 351
## 16020 2020-12-19 Alabama 1 319904 4389
## 16021 2020-12-19 Alaska 2 43468 177
## 16022 2020-12-19 Arizona 4 450807 7956
## 16023 2020-12-19 Arkansas 5 200114 3191
## 16024 2020-12-19 California 6 1847031 22651
## 16025 2020-12-19 Colorado 8 308350 4400
## 16026 2020-12-19 Connecticut 9 162782 5581
## 16027 2020-12-19 Delaware 10 50136 858
## 16028 2020-12-19 District of Columbia 11 26342 730
## 16029 2020-12-19 Florida 12 1193157 20472
## 16030 2020-12-19 Georgia 13 562479 10054
## 16031 2020-12-19 Guam 66 8167 120
## 16032 2020-12-19 Hawaii 15 20089 279
## 16033 2020-12-19 Idaho 16 129334 1280
## 16034 2020-12-19 Illinois 17 896003 16326
## 16035 2020-12-19 Indiana 18 460766 7338
## 16036 2020-12-19 Iowa 19 266959 3533
## 16037 2020-12-19 Kansas 20 203650 2341
## 16038 2020-12-19 Kentucky 21 243047 2637
## 16039 2020-12-19 Louisiana 22 282434 6994
## 16040 2020-12-19 Maine 23 18739 292
## 16041 2020-12-19 Maryland 24 248924 5412
## 16042 2020-12-19 Massachusetts 25 319270 11657
## 16043 2020-12-19 Michigan 26 494847 12066
## 16044 2020-12-19 Minnesota 27 394694 4839
## 16045 2020-12-19 Mississippi 28 192111 4390
## 16046 2020-12-19 Missouri 29 384522 5236
## 16047 2020-12-19 Montana 30 76708 864
## 16048 2020-12-19 Nebraska 31 156433 1505
## 16049 2020-12-19 Nevada 32 202164 2754
## 16050 2020-12-19 New Hampshire 33 35609 650
## 16051 2020-12-19 New Jersey 34 429325 18173
## 16052 2020-12-19 New Mexico 35 128930 2155
## 16053 2020-12-19 New York 36 841946 35897
## 16054 2020-12-19 North Carolina 37 473691 6222
## 16055 2020-12-19 North Dakota 38 89794 1237
## 16056 2020-12-19 Northern Mariana Islands 69 115 2
## 16057 2020-12-19 Ohio 39 614429 8031
## 16058 2020-12-19 Oklahoma 40 255868 2189
## 16059 2020-12-19 Oregon 41 101814 1340
## 16060 2020-12-19 Pennsylvania 42 553424 13869
## 16061 2020-12-19 Puerto Rico 72 100826 1342
## 16062 2020-12-19 Rhode Island 44 77812 1625
## 16063 2020-12-19 South Carolina 45 270537 4895
## 16064 2020-12-19 South Dakota 46 94336 1350
## 16065 2020-12-19 Tennessee 47 494497 5953
## 16066 2020-12-19 Texas 48 1584055 25841
## 16067 2020-12-19 Utah 49 248970 1148
## 16068 2020-12-19 Vermont 50 6343 108
## 16069 2020-12-19 Virgin Islands 78 1910 23
## 16070 2020-12-19 Virginia 51 302972 4643
## 16071 2020-12-19 Washington 53 226551 3169
## 16072 2020-12-19 West Virginia 54 71215 1122
## 16073 2020-12-19 Wisconsin 55 490679 4724
## 16074 2020-12-19 Wyoming 56 41488 351
## 16075 2020-12-20 Alabama 1 322452 4389
## 16076 2020-12-20 Alaska 2 43649 176
## 16077 2020-12-20 Arizona 4 453601 7971
## 16078 2020-12-20 Arkansas 5 201650 3237
## 16079 2020-12-20 California 6 1889914 22736
## 16080 2020-12-20 Colorado 8 310522 4420
## 16081 2020-12-20 Connecticut 9 162782 5581
## 16082 2020-12-20 Delaware 10 50616 862
## 16083 2020-12-20 District of Columbia 11 26601 737
## 16084 2020-12-20 Florida 12 1201558 20567
## 16085 2020-12-20 Georgia 13 567654 10056
## 16086 2020-12-20 Guam 66 8171 120
## 16087 2020-12-20 Hawaii 15 20291 280
## 16088 2020-12-20 Idaho 16 130039 1284
## 16089 2020-12-20 Illinois 17 901924 16407
## 16090 2020-12-20 Indiana 18 467258 7404
## 16091 2020-12-20 Iowa 19 267329 3589
## 16092 2020-12-20 Kansas 20 203674 2341
## 16093 2020-12-20 Kentucky 21 244784 2665
## 16094 2020-12-20 Louisiana 22 286145 7042
## 16095 2020-12-20 Maine 23 18946 292
## 16096 2020-12-20 Maryland 24 251069 5448
## 16097 2020-12-20 Massachusetts 25 323531 11717
## 16098 2020-12-20 Michigan 26 495023 12066
## 16099 2020-12-20 Minnesota 27 397378 4909
## 16100 2020-12-20 Mississippi 28 194333 4409
## 16101 2020-12-20 Missouri 29 386259 5262
## 16102 2020-12-20 Montana 30 77170 865
## 16103 2020-12-20 Nebraska 31 157171 1515
## 16104 2020-12-20 Nevada 32 204227 2786
## 16105 2020-12-20 New Hampshire 33 36542 656
## 16106 2020-12-20 New Jersey 34 434500 18194
## 16107 2020-12-20 New Mexico 35 129993 2171
## 16108 2020-12-20 New York 36 851400 36017
## 16109 2020-12-20 North Carolina 37 479875 6259
## 16110 2020-12-20 North Dakota 38 90045 1237
## 16111 2020-12-20 Northern Mariana Islands 69 115 2
## 16112 2020-12-20 Ohio 39 622806 8047
## 16113 2020-12-20 Oklahoma 40 260838 2212
## 16114 2020-12-20 Oregon 41 102930 1341
## 16115 2020-12-20 Pennsylvania 42 560002 13964
## 16116 2020-12-20 Puerto Rico 72 102048 1368
## 16117 2020-12-20 Rhode Island 44 77812 1625
## 16118 2020-12-20 South Carolina 45 273406 4935
## 16119 2020-12-20 South Dakota 46 94727 1361
## 16120 2020-12-20 Tennessee 47 505880 6007
## 16121 2020-12-20 Texas 48 1591885 25948
## 16122 2020-12-20 Utah 49 250964 1155
## 16123 2020-12-20 Vermont 50 6443 111
## 16124 2020-12-20 Virgin Islands 78 1921 23
## 16125 2020-12-20 Virginia 51 306848 4650
## 16126 2020-12-20 Washington 53 227049 3170
## 16127 2020-12-20 West Virginia 54 72342 1128
## 16128 2020-12-20 Wisconsin 55 492724 4745
## 16129 2020-12-20 Wyoming 56 41662 351
## 16130 2020-12-21 Alabama 1 324832 4389
## 16131 2020-12-21 Alaska 2 43801 176
## 16132 2020-12-21 Arizona 4 461345 7972
## 16133 2020-12-21 Arkansas 5 203107 3295
## 16134 2020-12-21 California 6 1933169 22980
## 16135 2020-12-21 Colorado 8 312713 4432
## 16136 2020-12-21 Connecticut 9 167377 5676
## 16137 2020-12-21 Delaware 10 51056 871
## 16138 2020-12-21 District of Columbia 11 26740 742
## 16139 2020-12-21 Florida 12 1212573 20679
## 16140 2020-12-21 Georgia 13 571301 10072
## 16141 2020-12-21 Guam 66 8180 121
## 16142 2020-12-21 Hawaii 15 20423 280
## 16143 2020-12-21 Idaho 16 131468 1305
## 16144 2020-12-21 Illinois 17 906917 16530
## 16145 2020-12-21 Indiana 18 471124 7438
## 16146 2020-12-21 Iowa 19 268736 3589
## 16147 2020-12-21 Kansas 20 207933 2448
## 16148 2020-12-21 Kentucky 21 247243 2701
## 16149 2020-12-21 Louisiana 22 287261 7107
## 16150 2020-12-21 Maine 23 19285 293
## 16151 2020-12-21 Maryland 24 253345 5471
## 16152 2020-12-21 Massachusetts 25 327374 11759
## 16153 2020-12-21 Michigan 26 499988 12146
## 16154 2020-12-21 Minnesota 27 399370 4931
## 16155 2020-12-21 Mississippi 28 195500 4411
## 16156 2020-12-21 Missouri 29 390512 5291
## 16157 2020-12-21 Montana 30 77456 881
## 16158 2020-12-21 Nebraska 31 158119 1540
## 16159 2020-12-21 Nevada 32 206195 2801
## 16160 2020-12-21 New Hampshire 33 37388 656
## 16161 2020-12-21 New Jersey 34 437671 18223
## 16162 2020-12-21 New Mexico 35 130808 2180
## 16163 2020-12-21 New York 36 860856 36147
## 16164 2020-12-21 North Carolina 37 484513 6285
## 16165 2020-12-21 North Dakota 38 90127 1239
## 16166 2020-12-21 Northern Mariana Islands 69 116 2
## 16167 2020-12-21 Ohio 39 629354 8122
## 16168 2020-12-21 Oklahoma 40 263434 2218
## 16169 2020-12-21 Oregon 41 103880 1351
## 16170 2020-12-21 Pennsylvania 42 569413 14021
## 16171 2020-12-21 Puerto Rico 72 102464 1382
## 16172 2020-12-21 Rhode Island 44 80231 1670
## 16173 2020-12-21 South Carolina 45 275733 4962
## 16174 2020-12-21 South Dakota 46 95074 1381
## 16175 2020-12-21 Tennessee 47 515145 6072
## 16176 2020-12-21 Texas 48 1608768 26164
## 16177 2020-12-21 Utah 49 252783 1163
## 16178 2020-12-21 Vermont 50 6534 111
## 16179 2020-12-21 Virgin Islands 78 1921 23
## 16180 2020-12-21 Virginia 51 310890 4654
## 16181 2020-12-21 Washington 53 230642 3186
## 16182 2020-12-21 West Virginia 54 73337 1129
## 16183 2020-12-21 Wisconsin 55 494353 4754
## 16184 2020-12-21 Wyoming 56 42118 351
## 16185 2020-12-22 Alabama 1 329811 4452
## 16186 2020-12-22 Alaska 2 44241 186
## 16187 2020-12-22 Arizona 4 470351 8133
## 16188 2020-12-22 Arkansas 5 205048 3338
## 16189 2020-12-22 California 6 1968541 23254
## 16190 2020-12-22 Colorado 8 315397 4464
## 16191 2020-12-22 Connecticut 9 168960 5703
## 16192 2020-12-22 Delaware 10 51623 872
## 16193 2020-12-22 District of Columbia 11 26900 744
## 16194 2020-12-22 Florida 12 1223007 20753
## 16195 2020-12-22 Georgia 13 579957 10135
## 16196 2020-12-22 Guam 66 8180 121
## 16197 2020-12-22 Hawaii 15 20487 280
## 16198 2020-12-22 Idaho 16 132950 1317
## 16199 2020-12-22 Illinois 17 913265 16677
## 16200 2020-12-22 Indiana 18 474797 7581
## 16201 2020-12-22 Iowa 19 270294 3653
## 16202 2020-12-22 Kansas 20 208109 2448
## 16203 2020-12-22 Kentucky 21 250089 2739
## 16204 2020-12-22 Louisiana 22 290960 7158
## 16205 2020-12-22 Maine 23 19743 303
## 16206 2020-12-22 Maryland 24 255666 5519
## 16207 2020-12-22 Massachusetts 25 331174 11804
## 16208 2020-12-22 Michigan 26 503497 12333
## 16209 2020-12-22 Minnesota 27 401070 4955
## 16210 2020-12-22 Mississippi 28 197691 4490
## 16211 2020-12-22 Missouri 29 393488 5474
## 16212 2020-12-22 Montana 30 78017 901
## 16213 2020-12-22 Nebraska 31 159267 1553
## 16214 2020-12-22 Nevada 32 207351 2832
## 16215 2020-12-22 New Hampshire 33 38008 656
## 16216 2020-12-22 New Jersey 34 442274 18326
## 16217 2020-12-22 New Mexico 35 132075 2203
## 16218 2020-12-22 New York 36 871155 36300
## 16219 2020-12-22 North Carolina 37 491242 6342
## 16220 2020-12-22 North Dakota 38 90459 1244
## 16221 2020-12-22 Northern Mariana Islands 69 116 2
## 16222 2020-12-22 Ohio 39 637032 8252
## 16223 2020-12-22 Oklahoma 40 265620 2240
## 16224 2020-12-22 Oregon 41 105091 1382
## 16225 2020-12-22 Pennsylvania 42 577183 14244
## 16226 2020-12-22 Puerto Rico 72 103527 1391
## 16227 2020-12-22 Rhode Island 44 81187 1678
## 16228 2020-12-22 South Carolina 45 278055 4976
## 16229 2020-12-22 South Dakota 46 95509 1381
## 16230 2020-12-22 Tennessee 47 519475 6205
## 16231 2020-12-22 Texas 48 1630886 26363
## 16232 2020-12-22 Utah 49 255085 1175
## 16233 2020-12-22 Vermont 50 6608 112
## 16234 2020-12-22 Virgin Islands 78 1934 23
## 16235 2020-12-22 Virginia 51 314481 4705
## 16236 2020-12-22 Washington 53 232204 3214
## 16237 2020-12-22 West Virginia 54 74737 1171
## 16238 2020-12-22 Wisconsin 55 497380 4882
## 16239 2020-12-22 Wyoming 56 42379 373
## 16240 2020-12-23 Alabama 1 334569 4587
## 16241 2020-12-23 Alaska 2 44602 189
## 16242 2020-12-23 Arizona 4 475706 8184
## 16243 2020-12-23 Arkansas 5 207941 3376
## 16244 2020-12-23 California 6 2013298 23633
## 16245 2020-12-23 Colorado 8 318027 4531
## 16246 2020-12-23 Connecticut 9 170705 5736
## 16247 2020-12-23 Delaware 10 52235 872
## 16248 2020-12-23 District of Columbia 11 27226 751
## 16249 2020-12-23 Florida 12 1234391 20873
## 16250 2020-12-23 Georgia 13 587472 10193
## 16251 2020-12-23 Guam 66 8180 121
## 16252 2020-12-23 Hawaii 15 20582 283
## 16253 2020-12-23 Idaho 16 134258 1343
## 16254 2020-12-23 Illinois 17 919992 16846
## 16255 2020-12-23 Indiana 18 479476 7645
## 16256 2020-12-23 Iowa 19 272112 3668
## 16257 2020-12-23 Kansas 20 212871 2507
## 16258 2020-12-23 Kentucky 21 252978 2774
## 16259 2020-12-23 Louisiana 22 293934 7226
## 16260 2020-12-23 Maine 23 20491 311
## 16261 2020-12-23 Maryland 24 258129 5568
## 16262 2020-12-23 Massachusetts 25 335988 11887
## 16263 2020-12-23 Michigan 26 507291 12405
## 16264 2020-12-23 Minnesota 27 402578 5030
## 16265 2020-12-23 Mississippi 28 200325 4533
## 16266 2020-12-23 Missouri 29 396409 5588
## 16267 2020-12-23 Montana 30 78591 917
## 16268 2020-12-23 Nebraska 31 160586 1597
## 16269 2020-12-23 Nevada 32 210319 2885
## 16270 2020-12-23 New Hampshire 33 38512 677
## 16271 2020-12-23 New Jersey 34 447083 18466
## 16272 2020-12-23 New Mexico 35 133242 2243
## 16273 2020-12-23 New York 36 882895 36454
## 16274 2020-12-23 North Carolina 37 497869 6418
## 16275 2020-12-23 North Dakota 38 90729 1249
## 16276 2020-12-23 Northern Mariana Islands 69 118 2
## 16277 2020-12-23 Ohio 39 644822 8361
## 16278 2020-12-23 Oklahoma 40 269276 2283
## 16279 2020-12-23 Oregon 41 106020 1409
## 16280 2020-12-23 Pennsylvania 42 586908 14470
## 16281 2020-12-23 Puerto Rico 72 104103 1408
## 16282 2020-12-23 Rhode Island 44 82066 1704
## 16283 2020-12-23 South Carolina 45 282230 5028
## 16284 2020-12-23 South Dakota 46 96040 1389
## 16285 2020-12-23 Tennessee 47 527326 6316
## 16286 2020-12-23 Texas 48 1651560 26624
## 16287 2020-12-23 Utah 49 257697 1196
## 16288 2020-12-23 Vermont 50 6680 117
## 16289 2020-12-23 Virgin Islands 78 1950 23
## 16290 2020-12-23 Virginia 51 319133 4760
## 16291 2020-12-23 Washington 53 234832 3245
## 16292 2020-12-23 West Virginia 54 75936 1194
## 16293 2020-12-23 Wisconsin 55 500443 4956
## 16294 2020-12-23 Wyoming 56 42664 373
## 16295 2020-12-24 Alabama 1 338801 4676
## 16296 2020-12-24 Alaska 2 44876 191
## 16297 2020-12-24 Arizona 4 483502 8301
## 16298 2020-12-24 Arkansas 5 211145 3406
## 16299 2020-12-24 California 6 2048014 23944
## 16300 2020-12-24 Colorado 8 320714 4610
## 16301 2020-12-24 Connecticut 9 172743 5791
## 16302 2020-12-24 Delaware 10 53015 888
## 16303 2020-12-24 District of Columbia 11 27436 756
## 16304 2020-12-24 Florida 12 1247538 20994
## 16305 2020-12-24 Georgia 13 597753 10256
## 16306 2020-12-24 Guam 66 8235 122
## 16307 2020-12-24 Hawaii 15 20707 283
## 16308 2020-12-24 Idaho 16 135383 1353
## 16309 2020-12-24 Illinois 17 926967 16964
## 16310 2020-12-24 Indiana 18 485681 7730
## 16311 2020-12-24 Iowa 19 273661 3739
## 16312 2020-12-24 Kansas 20 212962 2507
## 16313 2020-12-24 Kentucky 21 253437 2780
## 16314 2020-12-24 Louisiana 22 296499 7272
## 16315 2020-12-24 Maine 23 21226 317
## 16316 2020-12-24 Maryland 24 260994 5627
## 16317 2020-12-24 Massachusetts 25 341925 11963
## 16318 2020-12-24 Michigan 26 507545 12406
## 16319 2020-12-24 Minnesota 27 404462 5109
## 16320 2020-12-24 Mississippi 28 202651 4556
## 16321 2020-12-24 Missouri 29 399528 5627
## 16322 2020-12-24 Montana 30 79066 918
## 16323 2020-12-24 Nebraska 31 161338 1601
## 16324 2020-12-24 Nevada 32 212662 2926
## 16325 2020-12-24 New Hampshire 33 38902 690
## 16326 2020-12-24 New Jersey 34 451787 18544
## 16327 2020-12-24 New Mexico 35 135166 2272
## 16328 2020-12-24 New York 36 896242 36604
## 16329 2020-12-24 North Carolina 37 498005 6420
## 16330 2020-12-24 North Dakota 38 90955 1267
## 16331 2020-12-24 Northern Mariana Islands 69 118 2
## 16332 2020-12-24 Ohio 39 653650 8456
## 16333 2020-12-24 Oklahoma 40 272553 2328
## 16334 2020-12-24 Oregon 41 106822 1417
## 16335 2020-12-24 Pennsylvania 42 596122 14759
## 16336 2020-12-24 Puerto Rico 72 104423 1423
## 16337 2020-12-24 Rhode Island 44 82066 1704
## 16338 2020-12-24 South Carolina 45 285028 5043
## 16339 2020-12-24 South Dakota 46 96546 1430
## 16340 2020-12-24 Tennessee 47 532375 6367
## 16341 2020-12-24 Texas 48 1659551 26879
## 16342 2020-12-24 Utah 49 260589 1205
## 16343 2020-12-24 Vermont 50 6781 120
## 16344 2020-12-24 Virgin Islands 78 1967 23
## 16345 2020-12-24 Virginia 51 323915 4791
## 16346 2020-12-24 Washington 53 237269 3268
## 16347 2020-12-24 West Virginia 54 77239 1228
## 16348 2020-12-24 Wisconsin 55 503706 5022
## 16349 2020-12-24 Wyoming 56 42664 373
## 16350 2020-12-25 Alabama 1 342426 4680
## 16351 2020-12-25 Alaska 2 44876 191
## 16352 2020-12-25 Arizona 4 486993 8409
## 16353 2020-12-25 Arkansas 5 213267 3438
## 16354 2020-12-25 California 6 2064763 23964
## 16355 2020-12-25 Colorado 8 323329 4631
## 16356 2020-12-25 Connecticut 9 172743 5791
## 16357 2020-12-25 Delaware 10 53653 891
## 16358 2020-12-25 District of Columbia 11 27436 756
## 16359 2020-12-25 Florida 12 1247538 20994
## 16360 2020-12-25 Georgia 13 603246 10303
## 16361 2020-12-25 Guam 66 8237 122
## 16362 2020-12-25 Hawaii 15 20861 283
## 16363 2020-12-25 Idaho 16 135383 1353
## 16364 2020-12-25 Illinois 17 932427 17155
## 16365 2020-12-25 Indiana 18 491125 7770
## 16366 2020-12-25 Iowa 19 274266 3744
## 16367 2020-12-25 Kansas 20 213076 2507
## 16368 2020-12-25 Kentucky 21 253824 2782
## 16369 2020-12-25 Louisiana 22 296499 7272
## 16370 2020-12-25 Maine 23 21547 319
## 16371 2020-12-25 Maryland 24 263326 5659
## 16372 2020-12-25 Massachusetts 25 341925 11963
## 16373 2020-12-25 Michigan 26 507687 12406
## 16374 2020-12-25 Minnesota 27 404462 5109
## 16375 2020-12-25 Mississippi 28 204178 4562
## 16376 2020-12-25 Missouri 29 400714 5633
## 16377 2020-12-25 Montana 30 79066 918
## 16378 2020-12-25 Nebraska 31 161960 1594
## 16379 2020-12-25 Nevada 32 214077 2943
## 16380 2020-12-25 New Hampshire 33 38902 690
## 16381 2020-12-25 New Jersey 34 456847 18595
## 16382 2020-12-25 New Mexico 35 136622 2309
## 16383 2020-12-25 New York 36 909123 36739
## 16384 2020-12-25 North Carolina 37 498005 6420
## 16385 2020-12-25 North Dakota 38 91229 1271
## 16386 2020-12-25 Northern Mariana Islands 69 118 2
## 16387 2020-12-25 Ohio 39 653650 8456
## 16388 2020-12-25 Oklahoma 40 272553 2328
## 16389 2020-12-25 Oregon 41 107833 1431
## 16390 2020-12-25 Pennsylvania 42 602605 14892
## 16391 2020-12-25 Puerto Rico 72 105039 1432
## 16392 2020-12-25 Rhode Island 44 82066 1704
## 16393 2020-12-25 South Carolina 45 285028 5043
## 16394 2020-12-25 South Dakota 46 96546 1430
## 16395 2020-12-25 Tennessee 47 541267 6367
## 16396 2020-12-25 Texas 48 1661619 27042
## 16397 2020-12-25 Utah 49 260589 1205
## 16398 2020-12-25 Vermont 50 6781 120
## 16399 2020-12-25 Virgin Islands 78 1979 23
## 16400 2020-12-25 Virginia 51 327993 4820
## 16401 2020-12-25 Washington 53 237689 3268
## 16402 2020-12-25 West Virginia 54 78836 1247
## 16403 2020-12-25 Wisconsin 55 505345 5028
## 16404 2020-12-25 Wyoming 56 42664 373
## 16405 2020-12-26 Alabama 1 343458 4685
## 16406 2020-12-26 Alaska 2 45247 192
## 16407 2020-12-26 Arizona 4 493277 8424
## 16408 2020-12-26 Arkansas 5 213969 3441
## 16409 2020-12-26 California 6 2129749 24221
## 16410 2020-12-26 Colorado 8 324869 4652
## 16411 2020-12-26 Connecticut 9 172743 5791
## 16412 2020-12-26 Delaware 10 54473 895
## 16413 2020-12-26 District of Columbia 11 27710 762
## 16414 2020-12-26 Florida 12 1264580 21134
## 16415 2020-12-26 Georgia 13 607133 10352
## 16416 2020-12-26 Guam 66 8238 122
## 16417 2020-12-26 Hawaii 15 20970 283
## 16418 2020-12-26 Idaho 16 135886 1357
## 16419 2020-12-26 Illinois 17 935849 17225
## 16420 2020-12-26 Indiana 18 494967 7801
## 16421 2020-12-26 Iowa 19 274793 3744
## 16422 2020-12-26 Kansas 20 213091 2507
## 16423 2020-12-26 Kentucky 21 257453 2821
## 16424 2020-12-26 Louisiana 22 296499 7272
## 16425 2020-12-26 Maine 23 21547 319
## 16426 2020-12-26 Maryland 24 265606 5680
## 16427 2020-12-26 Massachusetts 25 349602 12010
## 16428 2020-12-26 Michigan 26 515022 12680
## 16429 2020-12-26 Minnesota 27 406604 5166
## 16430 2020-12-26 Mississippi 28 205023 4565
## 16431 2020-12-26 Missouri 29 402344 5642
## 16432 2020-12-26 Montana 30 79521 919
## 16433 2020-12-26 Nebraska 31 162272 1595
## 16434 2020-12-26 Nevada 32 216329 2951
## 16435 2020-12-26 New Hampshire 33 39933 701
## 16436 2020-12-26 New Jersey 34 460846 18613
## 16437 2020-12-26 New Mexico 35 137227 2318
## 16438 2020-12-26 New York 36 920171 36870
## 16439 2020-12-26 North Carolina 37 514724 6574
## 16440 2020-12-26 North Dakota 38 91362 1271
## 16441 2020-12-26 Northern Mariana Islands 69 122 2
## 16442 2020-12-26 Ohio 39 664668 8476
## 16443 2020-12-26 Oklahoma 40 276508 2357
## 16444 2020-12-26 Oregon 41 108348 1431
## 16445 2020-12-26 Pennsylvania 42 609682 14915
## 16446 2020-12-26 Puerto Rico 72 106058 1432
## 16447 2020-12-26 Rhode Island 44 82066 1704
## 16448 2020-12-26 South Carolina 45 288892 5124
## 16449 2020-12-26 South Dakota 46 96963 1446
## 16450 2020-12-26 Tennessee 47 546245 6382
## 16451 2020-12-26 Texas 48 1667352 27062
## 16452 2020-12-26 Utah 49 264078 1212
## 16453 2020-12-26 Vermont 50 6966 121
## 16454 2020-12-26 Virgin Islands 78 1979 23
## 16455 2020-12-26 Virginia 51 329577 4840
## 16456 2020-12-26 Washington 53 240763 3283
## 16457 2020-12-26 West Virginia 54 80177 1253
## 16458 2020-12-26 Wisconsin 55 506022 5032
## 16459 2020-12-26 Wyoming 56 43146 373
## 16460 2020-12-27 Alabama 1 345628 4691
## 16461 2020-12-27 Alaska 2 45547 192
## 16462 2020-12-27 Arizona 4 494489 8427
## 16463 2020-12-27 Arkansas 5 214877 3482
## 16464 2020-12-27 California 6 2167303 24283
## 16465 2020-12-27 Colorado 8 326276 4660
## 16466 2020-12-27 Connecticut 9 172743 5791
## 16467 2020-12-27 Delaware 10 55057 897
## 16468 2020-12-27 District of Columbia 11 28202 768
## 16469 2020-12-27 Florida 12 1271971 21211
## 16470 2020-12-27 Georgia 13 610574 10356
## 16471 2020-12-27 Guam 66 8239 122
## 16472 2020-12-27 Hawaii 15 21064 283
## 16473 2020-12-27 Idaho 16 136281 1357
## 16474 2020-12-27 Illinois 17 939671 17336
## 16475 2020-12-27 Indiana 18 496795 7843
## 16476 2020-12-27 Iowa 19 275299 3745
## 16477 2020-12-27 Kansas 20 213173 2507
## 16478 2020-12-27 Kentucky 21 258820 2845
## 16479 2020-12-27 Louisiana 22 299722 7291
## 16480 2020-12-27 Maine 23 21880 323
## 16481 2020-12-27 Maryland 24 267455 5712
## 16482 2020-12-27 Massachusetts 25 352736 12110
## 16483 2020-12-27 Michigan 26 515114 12680
## 16484 2020-12-27 Minnesota 27 409120 5206
## 16485 2020-12-27 Mississippi 28 206388 4606
## 16486 2020-12-27 Missouri 29 404201 5656
## 16487 2020-12-27 Montana 30 79780 924
## 16488 2020-12-27 Nebraska 31 162886 1595
## 16489 2020-12-27 Nevada 32 217653 2965
## 16490 2020-12-27 New Hampshire 33 40809 708
## 16491 2020-12-27 New Jersey 34 463166 18630
## 16492 2020-12-27 New Mexico 35 137968 2348
## 16493 2020-12-27 New York 36 928376 37000
## 16494 2020-12-27 North Carolina 37 517449 6592
## 16495 2020-12-27 North Dakota 38 91472 1273
## 16496 2020-12-27 Northern Mariana Islands 69 122 2
## 16497 2020-12-27 Ohio 39 670525 8509
## 16498 2020-12-27 Oklahoma 40 279139 2370
## 16499 2020-12-27 Oregon 41 109734 1436
## 16500 2020-12-27 Pennsylvania 42 614303 15040
## 16501 2020-12-27 Puerto Rico 72 106842 1445
## 16502 2020-12-27 Rhode Island 44 82066 1704
## 16503 2020-12-27 South Carolina 45 296179 5155
## 16504 2020-12-27 South Dakota 46 97390 1446
## 16505 2020-12-27 Tennessee 47 549299 6451
## 16506 2020-12-27 Texas 48 1690021 27110
## 16507 2020-12-27 Utah 49 264874 1214
## 16508 2020-12-27 Vermont 50 7029 127
## 16509 2020-12-27 Virgin Islands 78 1979 23
## 16510 2020-12-27 Virginia 51 333576 4854
## 16511 2020-12-27 Washington 53 241036 3283
## 16512 2020-12-27 West Virginia 54 80710 1254
## 16513 2020-12-27 Wisconsin 55 508580 5042
## 16514 2020-12-27 Wyoming 56 43200 373
## 16515 2020-12-28 Alabama 1 347897 4712
## 16516 2020-12-28 Alaska 2 45674 192
## 16517 2020-12-28 Arizona 4 504616 8469
## 16518 2020-12-28 Arkansas 5 216528 3537
## 16519 2020-12-28 California 6 2209024 24529
## 16520 2020-12-28 Colorado 8 328249 4699
## 16521 2020-12-28 Connecticut 9 181200 5904
## 16522 2020-12-28 Delaware 10 55488 898
## 16523 2020-12-28 District of Columbia 11 28342 771
## 16524 2020-12-28 Florida 12 1280169 21307
## 16525 2020-12-28 Georgia 13 614716 10363
## 16526 2020-12-28 Guam 66 8250 122
## 16527 2020-12-28 Hawaii 15 21109 283
## 16528 2020-12-28 Idaho 16 137449 1381
## 16529 2020-12-28 Illinois 17 944402 17476
## 16530 2020-12-28 Indiana 18 499256 7886
## 16531 2020-12-28 Iowa 19 276649 3745
## 16532 2020-12-28 Kansas 20 219095 2548
## 16533 2020-12-28 Kentucky 21 261009 2871
## 16534 2020-12-28 Louisiana 22 300539 7336
## 16535 2020-12-28 Maine 23 22319 326
## 16536 2020-12-28 Maryland 24 269442 5740
## 16537 2020-12-28 Massachusetts 25 356934 12158
## 16538 2020-12-28 Michigan 26 518788 12744
## 16539 2020-12-28 Minnesota 27 410197 5219
## 16540 2020-12-28 Mississippi 28 208089 4634
## 16541 2020-12-28 Missouri 29 407193 5668
## 16542 2020-12-28 Montana 30 80080 927
## 16543 2020-12-28 Nebraska 31 163903 1625
## 16544 2020-12-28 Nevada 32 218653 2973
## 16545 2020-12-28 New Hampshire 33 41670 715
## 16546 2020-12-28 New Jersey 34 465910 18651
## 16547 2020-12-28 New Mexico 35 138659 2384
## 16548 2020-12-28 New York 36 938710 37118
## 16549 2020-12-28 North Carolina 37 521990 6601
## 16550 2020-12-28 North Dakota 38 91565 1277
## 16551 2020-12-28 Northern Mariana Islands 69 122 2
## 16552 2020-12-28 Ohio 39 675044 8571
## 16553 2020-12-28 Oklahoma 40 282587 2383
## 16554 2020-12-28 Oregon 41 110303 1438
## 16555 2020-12-28 Pennsylvania 42 619425 15114
## 16556 2020-12-28 Puerto Rico 72 107273 1456
## 16557 2020-12-28 Rhode Island 44 85602 1742
## 16558 2020-12-28 South Carolina 45 298050 5173
## 16559 2020-12-28 South Dakota 46 97658 1446
## 16560 2020-12-28 Tennessee 47 552794 6524
## 16561 2020-12-28 Texas 48 1710489 27245
## 16562 2020-12-28 Utah 49 266590 1223
## 16563 2020-12-28 Vermont 50 7120 129
## 16564 2020-12-28 Virgin Islands 78 1979 23
## 16565 2020-12-28 Virginia 51 336175 4861
## 16566 2020-12-28 Washington 53 243547 3300
## 16567 2020-12-28 West Virginia 54 81436 1263
## 16568 2020-12-28 Wisconsin 55 510137 5065
## 16569 2020-12-28 Wyoming 56 43704 405
## 16570 2020-12-29 Alabama 1 351804 4737
## 16571 2020-12-29 Alaska 2 45856 193
## 16572 2020-12-29 Arizona 4 510548 8647
## 16573 2020-12-29 Arkansas 5 219246 3603
## 16574 2020-12-29 California 6 2243191 24954
## 16575 2020-12-29 Colorado 8 330118 4758
## 16576 2020-12-29 Connecticut 9 181967 5924
## 16577 2020-12-29 Delaware 10 56189 898
## 16578 2020-12-29 District of Columbia 11 28535 775
## 16579 2020-12-29 Florida 12 1292244 21408
## 16580 2020-12-29 Georgia 13 623901 10439
## 16581 2020-12-29 Guam 66 8262 122
## 16582 2020-12-29 Hawaii 15 21180 283
## 16583 2020-12-29 Idaho 16 138909 1396
## 16584 2020-12-29 Illinois 17 950122 17606
## 16585 2020-12-29 Indiana 18 503242 8051
## 16586 2020-12-29 Iowa 19 278310 3812
## 16587 2020-12-29 Kansas 20 219415 2548
## 16588 2020-12-29 Kentucky 21 264150 2903
## 16589 2020-12-29 Louisiana 22 304485 7397
## 16590 2020-12-29 Maine 23 22909 333
## 16591 2020-12-29 Maryland 24 271267 5803
## 16592 2020-12-29 Massachusetts 25 361079 12218
## 16593 2020-12-29 Michigan 26 522563 12956
## 16594 2020-12-29 Minnesota 27 411169 5255
## 16595 2020-12-29 Mississippi 28 210032 4719
## 16596 2020-12-29 Missouri 29 410334 5766
## 16597 2020-12-29 Montana 30 80516 939
## 16598 2020-12-29 Nebraska 31 164892 1641
## 16599 2020-12-29 Nevada 32 220378 3035
## 16600 2020-12-29 New Hampshire 33 42697 735
## 16601 2020-12-29 New Jersey 34 469567 18777
## 16602 2020-12-29 New Mexico 35 139908 2405
## 16603 2020-12-29 New York 36 950730 37256
## 16604 2020-12-29 North Carolina 37 526439 6630
## 16605 2020-12-29 North Dakota 38 91836 1283
## 16606 2020-12-29 Northern Mariana Islands 69 122 2
## 16607 2020-12-29 Ohio 39 682570 8722
## 16608 2020-12-29 Oklahoma 40 283781 2405
## 16609 2020-12-29 Oregon 41 111258 1457
## 16610 2020-12-29 Pennsylvania 42 628083 15389
## 16611 2020-12-29 Puerto Rico 72 109405 1460
## 16612 2020-12-29 Rhode Island 44 86789 1760
## 16613 2020-12-29 South Carolina 45 300602 5198
## 16614 2020-12-29 South Dakota 46 98158 1446
## 16615 2020-12-29 Tennessee 47 557554 6647
## 16616 2020-12-29 Texas 48 1734268 27499
## 16617 2020-12-29 Utah 49 269326 1238
## 16618 2020-12-29 Vermont 50 7202 130
## 16619 2020-12-29 Virgin Islands 78 1979 23
## 16620 2020-12-29 Virginia 51 340297 4920
## 16621 2020-12-29 Washington 53 245692 3433
## 16622 2020-12-29 West Virginia 54 82773 1284
## 16623 2020-12-29 Wisconsin 55 513056 5157
## 16624 2020-12-29 Wyoming 56 43923 405
## 16625 2020-12-30 Alabama 1 356820 4774
## 16626 2020-12-30 Alaska 2 46241 195
## 16627 2020-12-30 Arizona 4 515366 8726
## 16628 2020-12-30 Arkansas 5 222430 3637
## 16629 2020-12-30 California 6 2275565 25391
## 16630 2020-12-30 Colorado 8 332686 4822
## 16631 2020-12-30 Connecticut 9 183663 5964
## 16632 2020-12-30 Delaware 10 56596 921
## 16633 2020-12-30 District of Columbia 11 28758 780
## 16634 2020-12-30 Florida 12 1306115 21545
## 16635 2020-12-30 Georgia 13 632861 10503
## 16636 2020-12-30 Guam 66 8277 122
## 16637 2020-12-30 Hawaii 15 21284 283
## 16638 2020-12-30 Idaho 16 140150 1409
## 16639 2020-12-30 Illinois 17 957853 17813
## 16640 2020-12-30 Indiana 18 507979 8160
## 16641 2020-12-30 Iowa 19 280067 3822
## 16642 2020-12-30 Kansas 20 225361 2741
## 16643 2020-12-30 Kentucky 21 267990 2943
## 16644 2020-12-30 Louisiana 22 311229 7448
## 16645 2020-12-30 Maine 23 23499 334
## 16646 2020-12-30 Maryland 24 273881 5848
## 16647 2020-12-30 Massachusetts 25 367918 12338
## 16648 2020-12-30 Michigan 26 526401 13008
## 16649 2020-12-30 Minnesota 27 413166 5321
## 16650 2020-12-30 Mississippi 28 213055 4747
## 16651 2020-12-30 Missouri 29 413764 5846
## 16652 2020-12-30 Montana 30 81352 950
## 16653 2020-12-30 Nebraska 31 166385 1651
## 16654 2020-12-30 Nevada 32 223033 3081
## 16655 2020-12-30 New Hampshire 33 43242 741
## 16656 2020-12-30 New Jersey 34 474285 18952
## 16657 2020-12-30 New Mexico 35 141219 2438
## 16658 2020-12-30 New York 36 963647 37412
## 16659 2020-12-30 North Carolina 37 535120 6780
## 16660 2020-12-30 North Dakota 38 92208 1289
## 16661 2020-12-30 Northern Mariana Islands 69 122 2
## 16662 2020-12-30 Ohio 39 690748 8855
## 16663 2020-12-30 Oklahoma 40 287030 2453
## 16664 2020-12-30 Oregon 41 112301 1478
## 16665 2020-12-30 Pennsylvania 42 636710 15718
## 16666 2020-12-30 Puerto Rico 72 109503 1484
## 16667 2020-12-30 Rhode Island 44 87949 1777
## 16668 2020-12-30 South Carolina 45 303475 5249
## 16669 2020-12-30 South Dakota 46 98720 1464
## 16670 2020-12-30 Tennessee 47 566457 6748
## 16671 2020-12-30 Texas 48 1753686 27821
## 16672 2020-12-30 Utah 49 271940 1259
## 16673 2020-12-30 Vermont 50 7276 134
## 16674 2020-12-30 Virgin Islands 78 2010 23
## 16675 2020-12-30 Virginia 51 344345 4984
## 16676 2020-12-30 Washington 53 247455 3486
## 16677 2020-12-30 West Virginia 54 84225 1318
## 16678 2020-12-30 Wisconsin 55 516226 5195
## 16679 2020-12-30 Wyoming 56 44133 405
## 16680 2020-12-31 Alabama 1 361226 4827
## 16681 2020-12-31 Alaska 2 46740 198
## 16682 2020-12-31 Arizona 4 523829 8879
## 16683 2020-12-31 Arkansas 5 225138 3676
## 16684 2020-12-31 California 6 2307860 25965
## 16685 2020-12-31 Colorado 8 335579 4879
## 16686 2020-12-31 Connecticut 9 185708 5995
## 16687 2020-12-31 Delaware 10 57456 926
## 16688 2020-12-31 District of Columbia 11 28983 786
## 16689 2020-12-31 Florida 12 1323307 21672
## 16690 2020-12-31 Georgia 13 644065 10588
## 16691 2020-12-31 Guam 66 8286 123
## 16692 2020-12-31 Hawaii 15 21459 286
## 16693 2020-12-31 Idaho 16 141388 1438
## 16694 2020-12-31 Illinois 17 965840 17979
## 16695 2020-12-31 Indiana 18 514455 8263
## 16696 2020-12-31 Iowa 19 281712 3891
## 16697 2020-12-31 Kansas 20 225455 2741
## 16698 2020-12-31 Kentucky 21 268828 2956
## 16699 2020-12-31 Louisiana 22 315275 7488
## 16700 2020-12-31 Maine 23 24201 347
## 16701 2020-12-31 Maryland 24 276834 5895
## 16702 2020-12-31 Massachusetts 25 375178 12423
## 16703 2020-12-31 Michigan 26 526668 13010
## 16704 2020-12-31 Minnesota 27 415361 5382
## 16705 2020-12-31 Mississippi 28 215811 4787
## 16706 2020-12-31 Missouri 29 418637 5887
## 16707 2020-12-31 Montana 30 81701 962
## 16708 2020-12-31 Nebraska 31 167795 1690
## 16709 2020-12-31 Nevada 32 225165 3136
## 16710 2020-12-31 New Hampshire 33 44028 759
## 16711 2020-12-31 New Jersey 34 479381 19042
## 16712 2020-12-31 New Mexico 35 142897 2479
## 16713 2020-12-31 New York 36 979040 37557
## 16714 2020-12-31 North Carolina 37 541070 6811
## 16715 2020-12-31 North Dakota 38 92502 1299
## 16716 2020-12-31 Northern Mariana Islands 69 122 2
## 16717 2020-12-31 Ohio 39 700380 8962
## 16718 2020-12-31 Oklahoma 40 290936 2489
## 16719 2020-12-31 Oregon 41 113929 1485
## 16720 2020-12-31 Pennsylvania 42 646060 16020
## 16721 2020-12-31 Puerto Rico 72 109906 1503
## 16722 2020-12-31 Rhode Island 44 87949 1777
## 16723 2020-12-31 South Carolina 45 307507 5296
## 16724 2020-12-31 South Dakota 46 99164 1488
## 16725 2020-12-31 Tennessee 47 572579 6846
## 16726 2020-12-31 Texas 48 1770527 28155
## 16727 2020-12-31 Utah 49 276612 1270
## 16728 2020-12-31 Vermont 50 7412 136
## 16729 2020-12-31 Virgin Islands 78 2031 23
## 16730 2020-12-31 Virginia 51 349584 5032
## 16731 2020-12-31 Washington 53 251064 3523
## 16732 2020-12-31 West Virginia 54 85334 1338
## 16733 2020-12-31 Wisconsin 55 520438 5245
## 16734 2020-12-31 Wyoming 56 44409 438
## 16735 2021-01-01 Alabama 1 365747 4872
## 16736 2021-01-01 Alaska 2 46740 198
## 16737 2021-01-01 Arizona 4 530267 9015
## 16738 2021-01-01 Arkansas 5 229442 3711
## 16739 2021-01-01 California 6 2345811 26236
## 16740 2021-01-01 Colorado 8 338357 4936
## 16741 2021-01-01 Connecticut 9 185708 5995
## 16742 2021-01-01 Delaware 10 58064 930
## 16743 2021-01-01 District of Columbia 11 29252 788
## 16744 2021-01-01 Florida 12 1323307 21672
## 16745 2021-01-01 Georgia 13 654950 10610
## 16746 2021-01-01 Guam 66 8295 123
## 16747 2021-01-01 Hawaii 15 21736 287
## 16748 2021-01-01 Idaho 16 141388 1438
## 16749 2021-01-01 Illinois 17 966287 17979
## 16750 2021-01-01 Indiana 18 520750 8371
## 16751 2021-01-01 Iowa 19 282980 3898
## 16752 2021-01-01 Kansas 20 230352 2879
## 16753 2021-01-01 Kentucky 21 269470 2956
## 16754 2021-01-01 Louisiana 22 315275 7488
## 16755 2021-01-01 Maine 23 24201 347
## 16756 2021-01-01 Maryland 24 280387 5942
## 16757 2021-01-01 Massachusetts 25 375178 12423
## 16758 2021-01-01 Michigan 26 526845 13011
## 16759 2021-01-01 Minnesota 27 415361 5382
## 16760 2021-01-01 Mississippi 28 218386 4816
## 16761 2021-01-01 Missouri 29 421217 5906
## 16762 2021-01-01 Montana 30 81701 962
## 16763 2021-01-01 Nebraska 31 168567 1707
## 16764 2021-01-01 Nevada 32 227046 3146
## 16765 2021-01-01 New Hampshire 33 44028 759
## 16766 2021-01-01 New Jersey 34 484882 19160
## 16767 2021-01-01 New Mexico 35 144142 2504
## 16768 2021-01-01 New York 36 996073 37733
## 16769 2021-01-01 North Carolina 37 543976 6819
## 16770 2021-01-01 North Dakota 38 92777 1316
## 16771 2021-01-01 Northern Mariana Islands 69 122 2
## 16772 2021-01-01 Ohio 39 700380 8962
## 16773 2021-01-01 Oklahoma 40 290936 2489
## 16774 2021-01-01 Oregon 41 115377 1501
## 16775 2021-01-01 Pennsylvania 42 652952 16247
## 16776 2021-01-01 Puerto Rico 72 110669 1521
## 16777 2021-01-01 Rhode Island 44 87949 1777
## 16778 2021-01-01 South Carolina 45 307507 5296
## 16779 2021-01-01 South Dakota 46 99164 1488
## 16780 2021-01-01 Tennessee 47 572579 6846
## 16781 2021-01-01 Texas 48 1778306 28434
## 16782 2021-01-01 Utah 49 276612 1273
## 16783 2021-01-01 Vermont 50 7412 136
## 16784 2021-01-01 Virgin Islands 78 2036 23
## 16785 2021-01-01 Virginia 51 354766 5081
## 16786 2021-01-01 Washington 53 251585 3523
## 16787 2021-01-01 West Virginia 54 87820 1361
## 16788 2021-01-01 Wisconsin 55 522523 5257
## 16789 2021-01-01 Wyoming 56 44409 438
## 16790 2021-01-02 Alabama 1 369458 4872
## 16791 2021-01-02 Alaska 2 47549 207
## 16792 2021-01-02 Arizona 4 539162 9061
## 16793 2021-01-02 Arkansas 5 231442 3729
## 16794 2021-01-02 California 6 2398005 26542
## 16795 2021-01-02 Colorado 8 340454 4976
## 16796 2021-01-02 Connecticut 9 190120 6099
## 16797 2021-01-02 Delaware 10 58873 930
## 16798 2021-01-02 District of Columbia 11 29509 792
## 16799 2021-01-02 Florida 12 1354825 21889
## 16800 2021-01-02 Georgia 13 662077 10612
## 16801 2021-01-02 Guam 66 8295 124
## 16802 2021-01-02 Hawaii 15 21895 287
## 16803 2021-01-02 Idaho 16 142290 1451
## 16804 2021-01-02 Illinois 17 977677 18217
## 16805 2021-01-02 Indiana 18 526065 8410
## 16806 2021-01-02 Iowa 19 283895 3946
## 16807 2021-01-02 Kansas 20 230352 2879
## 16808 2021-01-02 Kentucky 21 275803 2999
## 16809 2021-01-02 Louisiana 22 315275 7488
## 16810 2021-01-02 Maine 23 25245 358
## 16811 2021-01-02 Maryland 24 283339 5967
## 16812 2021-01-02 Massachusetts 25 384181 12502
## 16813 2021-01-02 Michigan 26 535355 13296
## 16814 2021-01-02 Minnesota 27 417891 5436
## 16815 2021-01-02 Mississippi 28 220277 4840
## 16816 2021-01-02 Missouri 29 423894 5910
## 16817 2021-01-02 Montana 30 81991 971
## 16818 2021-01-02 Nebraska 31 169330 1708
## 16819 2021-01-02 Nevada 32 229601 3158
## 16820 2021-01-02 New Hampshire 33 45184 769
## 16821 2021-01-02 New Jersey 34 490393 19187
## 16822 2021-01-02 New Mexico 35 145379 2536
## 16823 2021-01-02 New York 36 1011922 37854
## 16824 2021-01-02 North Carolina 37 559942 6933
## 16825 2021-01-02 North Dakota 38 92898 1317
## 16826 2021-01-02 Northern Mariana Islands 69 122 2
## 16827 2021-01-02 Ohio 39 714673 9017
## 16828 2021-01-02 Oklahoma 40 296055 2527
## 16829 2021-01-02 Oregon 41 116348 1503
## 16830 2021-01-02 Pennsylvania 42 661731 16270
## 16831 2021-01-02 Puerto Rico 72 111547 1526
## 16832 2021-01-02 Rhode Island 44 87949 1777
## 16833 2021-01-02 South Carolina 45 312718 5385
## 16834 2021-01-02 South Dakota 46 99829 1501
## 16835 2021-01-02 Tennessee 47 589406 6908
## 16836 2021-01-02 Texas 48 1792363 28508
## 16837 2021-01-02 Utah 49 281747 1294
## 16838 2021-01-02 Vermont 50 7689 139
## 16839 2021-01-02 Virgin Islands 78 2042 23
## 16840 2021-01-02 Virginia 51 358755 5117
## 16841 2021-01-02 Washington 53 253290 3524
## 16842 2021-01-02 West Virginia 54 89327 1373
## 16843 2021-01-02 Wisconsin 55 523652 5259
## 16844 2021-01-02 Wyoming 56 44573 438
## 16845 2021-01-03 Alabama 1 371934 4873
## 16846 2021-01-03 Alaska 2 47846 207
## 16847 2021-01-03 Arizona 4 556384 9061
## 16848 2021-01-03 Arkansas 5 233475 3749
## 16849 2021-01-03 California 6 2433916 26635
## 16850 2021-01-03 Colorado 8 342494 4997
## 16851 2021-01-03 Connecticut 9 190120 6099
## 16852 2021-01-03 Delaware 10 59484 930
## 16853 2021-01-03 District of Columbia 11 29764 794
## 16854 2021-01-03 Florida 12 1365428 21986
## 16855 2021-01-03 Georgia 13 667705 10616
## 16856 2021-01-03 Guam 66 8296 124
## 16857 2021-01-03 Hawaii 15 22017 287
## 16858 2021-01-03 Idaho 16 142568 1451
## 16859 2021-01-03 Illinois 17 982105 18322
## 16860 2021-01-03 Indiana 18 529054 8475
## 16861 2021-01-03 Iowa 19 284715 3946
## 16862 2021-01-03 Kansas 20 230352 2879
## 16863 2021-01-03 Kentucky 21 278478 3013
## 16864 2021-01-03 Louisiana 22 321058 7537
## 16865 2021-01-03 Maine 23 25592 359
## 16866 2021-01-03 Maryland 24 285487 5994
## 16867 2021-01-03 Massachusetts 25 387662 12610
## 16868 2021-01-03 Michigan 26 535582 13296
## 16869 2021-01-03 Minnesota 27 420603 5489
## 16870 2021-01-03 Mississippi 28 222061 4871
## 16871 2021-01-03 Missouri 29 426489 5928
## 16872 2021-01-03 Montana 30 82381 972
## 16873 2021-01-03 Nebraska 31 170037 1708
## 16874 2021-01-03 Nevada 32 231869 3195
## 16875 2021-01-03 New Hampshire 33 46450 780
## 16876 2021-01-03 New Jersey 34 494063 19208
## 16877 2021-01-03 New Mexico 35 146394 2553
## 16878 2021-01-03 New York 36 1024154 38001
## 16879 2021-01-03 North Carolina 37 565260 6963
## 16880 2021-01-03 North Dakota 38 93048 1317
## 16881 2021-01-03 Northern Mariana Islands 69 122 2
## 16882 2021-01-03 Ohio 39 721481 9076
## 16883 2021-01-03 Oklahoma 40 304072 2547
## 16884 2021-01-03 Oregon 41 117745 1510
## 16885 2021-01-03 Pennsylvania 42 666207 16324
## 16886 2021-01-03 Puerto Rico 72 111784 1545
## 16887 2021-01-03 Rhode Island 44 87949 1777
## 16888 2021-01-03 South Carolina 45 321669 5469
## 16889 2021-01-03 South Dakota 46 100532 1513
## 16890 2021-01-03 Tennessee 47 593363 6962
## 16891 2021-01-03 Texas 48 1808382 28554
## 16892 2021-01-03 Utah 49 283473 1301
## 16893 2021-01-03 Vermont 50 7793 140
## 16894 2021-01-03 Virgin Islands 78 2042 23
## 16895 2021-01-03 Virginia 51 363765 5124
## 16896 2021-01-03 Washington 53 258557 3524
## 16897 2021-01-03 West Virginia 54 91058 1376
## 16898 2021-01-03 Wisconsin 55 526245 5264
## 16899 2021-01-03 Wyoming 56 44875 438
## 16900 2021-01-04 Alabama 1 374095 4878
## 16901 2021-01-04 Alaska 2 48110 209
## 16902 2021-01-04 Arizona 4 561542 9064
## 16903 2021-01-04 Arkansas 5 234781 3800
## 16904 2021-01-04 California 6 2474639 26995
## 16905 2021-01-04 Colorado 8 345239 5011
## 16906 2021-01-04 Connecticut 9 194636 6168
## 16907 2021-01-04 Delaware 10 60333 937
## 16908 2021-01-04 District of Columbia 11 29904 797
## 16909 2021-01-04 Florida 12 1376684 22089
## 16910 2021-01-04 Georgia 13 672849 10623
## 16911 2021-01-04 Guam 66 8313 124
## 16912 2021-01-04 Hawaii 15 22092 287
## 16913 2021-01-04 Idaho 16 143833 1462
## 16914 2021-01-04 Illinois 17 987459 18414
## 16915 2021-01-04 Indiana 18 532671 8514
## 16916 2021-01-04 Iowa 19 286356 3992
## 16917 2021-01-04 Kansas 20 234390 2897
## 16918 2021-01-04 Kentucky 21 282097 3067
## 16919 2021-01-04 Louisiana 22 322181 7585
## 16920 2021-01-04 Maine 23 25968 360
## 16921 2021-01-04 Maryland 24 287970 6027
## 16922 2021-01-04 Massachusetts 25 392582 12669
## 16923 2021-01-04 Michigan 26 541158 13381
## 16924 2021-01-04 Minnesota 27 423747 5502
## 16925 2021-01-04 Mississippi 28 223677 4884
## 16926 2021-01-04 Missouri 29 429745 5941
## 16927 2021-01-04 Montana 30 82753 975
## 16928 2021-01-04 Nebraska 31 170778 1727
## 16929 2021-01-04 Nevada 32 233324 3209
## 16930 2021-01-04 New Hampshire 33 47328 781
## 16931 2021-01-04 New Jersey 34 545155 19244
## 16932 2021-01-04 New Mexico 35 147315 2576
## 16933 2021-01-04 New York 36 1035396 38167
## 16934 2021-01-04 North Carolina 37 572018 7000
## 16935 2021-01-04 North Dakota 38 93247 1319
## 16936 2021-01-04 Northern Mariana Islands 69 122 2
## 16937 2021-01-04 Ohio 39 727423 9143
## 16938 2021-01-04 Oklahoma 40 306771 2552
## 16939 2021-01-04 Oregon 41 118473 1517
## 16940 2021-01-04 Pennsylvania 42 670769 16394
## 16941 2021-01-04 Puerto Rico 72 112420 1555
## 16942 2021-01-04 Rhode Island 44 92708 1855
## 16943 2021-01-04 South Carolina 45 325472 5484
## 16944 2021-01-04 South Dakota 46 100643 1513
## 16945 2021-01-04 Tennessee 47 597201 7101
## 16946 2021-01-04 Texas 48 1831486 28681
## 16947 2021-01-04 Utah 49 285633 1307
## 16948 2021-01-04 Vermont 50 7873 144
## 16949 2021-01-04 Virgin Islands 78 2042 23
## 16950 2021-01-04 Virginia 51 367536 5132
## 16951 2021-01-04 Washington 53 261328 3558
## 16952 2021-01-04 West Virginia 54 91886 1396
## 16953 2021-01-04 Wisconsin 55 527871 5273
## 16954 2021-01-04 Wyoming 56 45247 438
## 16955 2021-01-05 Alabama 1 379593 4886
## 16956 2021-01-05 Alaska 2 48302 209
## 16957 2021-01-05 Arizona 4 571676 9354
## 16958 2021-01-05 Arkansas 5 238888 3836
## 16959 2021-01-05 California 6 2511923 27486
## 16960 2021-01-05 Colorado 8 348483 5058
## 16961 2021-01-05 Connecticut 9 196968 6192
## 16962 2021-01-05 Delaware 10 61100 947
## 16963 2021-01-05 District of Columbia 11 30166 801
## 16964 2021-01-05 Florida 12 1392115 22187
## 16965 2021-01-05 Georgia 13 682749 10725
## 16966 2021-01-05 Guam 66 8326 124
## 16967 2021-01-05 Hawaii 15 22199 287
## 16968 2021-01-05 Idaho 16 145134 1474
## 16969 2021-01-05 Illinois 17 994511 18569
## 16970 2021-01-05 Indiana 18 536084 8663
## 16971 2021-01-05 Iowa 19 288298 3999
## 16972 2021-01-05 Kansas 20 234700 2897
## 16973 2021-01-05 Kentucky 21 284545 3093
## 16974 2021-01-05 Louisiana 22 326648 7635
## 16975 2021-01-05 Maine 23 26565 369
## 16976 2021-01-05 Maryland 24 289927 6082
## 16977 2021-01-05 Massachusetts 25 397202 12734
## 16978 2021-01-05 Michigan 26 544276 13598
## 16979 2021-01-05 Minnesota 27 425320 5520
## 16980 2021-01-05 Mississippi 28 225444 4975
## 16981 2021-01-05 Missouri 29 432830 6123
## 16982 2021-01-05 Montana 30 83529 1006
## 16983 2021-01-05 Nebraska 31 172067 1747
## 16984 2021-01-05 Nevada 32 235710 3246
## 16985 2021-01-05 New Hampshire 33 47992 792
## 16986 2021-01-05 New Jersey 34 551419 19382
## 16987 2021-01-05 New Mexico 35 148499 2596
## 16988 2021-01-05 New York 36 1048538 38315
## 16989 2021-01-05 North Carolina 37 578309 7080
## 16990 2021-01-05 North Dakota 38 93501 1336
## 16991 2021-01-05 Northern Mariana Islands 69 122 2
## 16992 2021-01-05 Ohio 39 735003 9247
## 16993 2021-01-05 Oklahoma 40 308268 2571
## 16994 2021-01-05 Oregon 41 119508 1550
## 16995 2021-01-05 Pennsylvania 42 679760 16583
## 16996 2021-01-05 Puerto Rico 72 112934 1562
## 16997 2021-01-05 Rhode Island 44 93852 1870
## 16998 2021-01-05 South Carolina 45 328073 5498
## 16999 2021-01-05 South Dakota 46 101076 1513
## 17000 2021-01-05 Tennessee 47 602397 7200
## 17001 2021-01-05 Texas 48 1862478 28949
## 17002 2021-01-05 Utah 49 288951 1314
## 17003 2021-01-05 Vermont 50 8038 149
## 17004 2021-01-05 Virgin Islands 78 2042 23
## 17005 2021-01-05 Virginia 51 371913 5191
## 17006 2021-01-05 Washington 53 263713 3611
## 17007 2021-01-05 West Virginia 54 93162 1442
## 17008 2021-01-05 Wisconsin 55 531890 5370
## 17009 2021-01-05 Wyoming 56 45569 464
## 17010 2021-01-06 Alabama 1 384184 4994
## 17011 2021-01-06 Alaska 2 48636 211
## 17012 2021-01-06 Arizona 4 578623 9467
## 17013 2021-01-06 Arkansas 5 242593 3901
## 17014 2021-01-06 California 6 2548830 28040
## 17015 2021-01-06 Colorado 8 350560 5080
## 17016 2021-01-06 Connecticut 9 199454 6230
## 17017 2021-01-06 Delaware 10 61729 947
## 17018 2021-01-06 District of Columbia 11 30482 806
## 17019 2021-01-06 Florida 12 1409898 22316
## 17020 2021-01-06 Georgia 13 690137 10814
## 17021 2021-01-06 Guam 66 8347 124
## 17022 2021-01-06 Hawaii 15 22325 297
## 17023 2021-01-06 Idaho 16 146322 1495
## 17024 2021-01-06 Illinois 17 1001955 18738
## 17025 2021-01-06 Indiana 18 542235 8743
## 17026 2021-01-06 Iowa 19 290776 4060
## 17027 2021-01-06 Kansas 20 239988 3027
## 17028 2021-01-06 Kentucky 21 289992 3135
## 17029 2021-01-06 Louisiana 22 333524 7681
## 17030 2021-01-06 Maine 23 27090 372
## 17031 2021-01-06 Maryland 24 293079 6132
## 17032 2021-01-06 Massachusetts 25 404053 12836
## 17033 2021-01-06 Michigan 26 548875 13657
## 17034 2021-01-06 Minnesota 27 427655 5596
## 17035 2021-01-06 Mississippi 28 228235 5013
## 17036 2021-01-06 Missouri 29 435687 6167
## 17037 2021-01-06 Montana 30 84155 1015
## 17038 2021-01-06 Nebraska 31 173625 1756
## 17039 2021-01-06 Nevada 32 237775 3301
## 17040 2021-01-06 New Hampshire 33 48838 816
## 17041 2021-01-06 New Jersey 34 557271 19523
## 17042 2021-01-06 New Mexico 35 149984 2643
## 17043 2021-01-06 New York 36 1064554 38486
## 17044 2021-01-06 North Carolina 37 584694 7149
## 17045 2021-01-06 North Dakota 38 93839 1341
## 17046 2021-01-06 Northern Mariana Islands 69 124 2
## 17047 2021-01-06 Ohio 39 742817 9368
## 17048 2021-01-06 Oklahoma 40 311573 2633
## 17049 2021-01-06 Oregon 41 120243 1571
## 17050 2021-01-06 Pennsylvania 42 689162 16960
## 17051 2021-01-06 Puerto Rico 72 113227 1570
## 17052 2021-01-06 Rhode Island 44 95463 1890
## 17053 2021-01-06 South Carolina 45 333235 5582
## 17054 2021-01-06 South Dakota 46 101684 1519
## 17055 2021-01-06 Tennessee 47 610347 7312
## 17056 2021-01-06 Texas 48 1887800 29278
## 17057 2021-01-06 Utah 49 292720 1333
## 17058 2021-01-06 Vermont 50 8158 152
## 17059 2021-01-06 Virgin Islands 78 2042 23
## 17060 2021-01-06 Virginia 51 377300 5226
## 17061 2021-01-06 Washington 53 265790 3681
## 17062 2021-01-06 West Virginia 54 94678 1481
## 17063 2021-01-06 Wisconsin 55 535999 5442
## 17064 2021-01-06 Wyoming 56 45890 464
## 17065 2021-01-07 Alabama 1 389230 5080
## 17066 2021-01-07 Alaska 2 48961 214
## 17067 2021-01-07 Arizona 4 588383 9764
## 17068 2021-01-07 Arkansas 5 245916 3926
## 17069 2021-01-07 California 6 2589250 28554
## 17070 2021-01-07 Colorado 8 354998 5164
## 17071 2021-01-07 Connecticut 9 202758 6287
## 17072 2021-01-07 Delaware 10 62949 949
## 17073 2021-01-07 District of Columbia 11 30750 808
## 17074 2021-01-07 Florida 12 1429714 22480
## 17075 2021-01-07 Georgia 13 699806 10878
## 17076 2021-01-07 Guam 66 8355 124
## 17077 2021-01-07 Hawaii 15 22611 297
## 17078 2021-01-07 Idaho 16 147500 1519
## 17079 2021-01-07 Illinois 17 1010808 18944
## 17080 2021-01-07 Indiana 18 549514 8823
## 17081 2021-01-07 Iowa 19 293189 4065
## 17082 2021-01-07 Kansas 20 240540 3027
## 17083 2021-01-07 Kentucky 21 294951 3161
## 17084 2021-01-07 Louisiana 22 338054 7728
## 17085 2021-01-07 Maine 23 27625 385
## 17086 2021-01-07 Maryland 24 296049 6173
## 17087 2021-01-07 Massachusetts 25 411601 12909
## 17088 2021-01-07 Michigan 26 553222 13863
## 17089 2021-01-07 Minnesota 27 429638 5640
## 17090 2021-01-07 Mississippi 28 231490 5061
## 17091 2021-01-07 Missouri 29 440563 6238
## 17092 2021-01-07 Montana 30 84848 1039
## 17093 2021-01-07 Nebraska 31 174590 1881
## 17094 2021-01-07 Nevada 32 241144 3349
## 17095 2021-01-07 New Hampshire 33 49261 827
## 17096 2021-01-07 New Jersey 34 564750 19646
## 17097 2021-01-07 New Mexico 35 151819 2682
## 17098 2021-01-07 New York 36 1082142 38683
## 17099 2021-01-07 North Carolina 37 595308 7262
## 17100 2021-01-07 North Dakota 38 94163 1348
## 17101 2021-01-07 Northern Mariana Islands 69 125 2
## 17102 2021-01-07 Ohio 39 753068 9462
## 17103 2021-01-07 Oklahoma 40 315354 2672
## 17104 2021-01-07 Oregon 41 121087 1577
## 17105 2021-01-07 Pennsylvania 42 699018 17220
## 17106 2021-01-07 Puerto Rico 72 113513 1588
## 17107 2021-01-07 Rhode Island 44 96591 1910
## 17108 2021-01-07 South Carolina 45 338112 5661
## 17109 2021-01-07 South Dakota 46 102132 1544
## 17110 2021-01-07 Tennessee 47 620557 7424
## 17111 2021-01-07 Texas 48 1910426 29645
## 17112 2021-01-07 Utah 49 297317 1362
## 17113 2021-01-07 Vermont 50 8403 155
## 17114 2021-01-07 Virgin Islands 78 2042 23
## 17115 2021-01-07 Virginia 51 382679 5275
## 17116 2021-01-07 Washington 53 269033 3719
## 17117 2021-01-07 West Virginia 54 96002 1518
## 17118 2021-01-07 Wisconsin 55 540508 5485
## 17119 2021-01-07 Wyoming 56 46168 489
## 17120 2021-01-08 Alabama 1 394287 5191
## 17121 2021-01-08 Alaska 2 49366 214
## 17122 2021-01-08 Arizona 4 602146 9970
## 17123 2021-01-08 Arkansas 5 248860 3966
## 17124 2021-01-08 California 6 2640221 29228
## 17125 2021-01-08 Colorado 8 357465 5207
## 17126 2021-01-08 Connecticut 9 205994 6324
## 17127 2021-01-08 Delaware 10 63503 957
## 17128 2021-01-08 District of Columbia 11 31107 809
## 17129 2021-01-08 Florida 12 1449244 22665
## 17130 2021-01-08 Georgia 13 712785 10958
## 17131 2021-01-08 Guam 66 8368 125
## 17132 2021-01-08 Hawaii 15 22894 301
## 17133 2021-01-08 Idaho 16 148578 1526
## 17134 2021-01-08 Illinois 17 1020011 19110
## 17135 2021-01-08 Indiana 18 555613 8892
## 17136 2021-01-08 Iowa 19 294762 4124
## 17137 2021-01-08 Kansas 20 245415 3148
## 17138 2021-01-08 Kentucky 21 299476 3194
## 17139 2021-01-08 Louisiana 22 341431 7833
## 17140 2021-01-08 Maine 23 28407 426
## 17141 2021-01-08 Maryland 24 299781 6216
## 17142 2021-01-08 Massachusetts 25 419721 12985
## 17143 2021-01-08 Michigan 26 557079 13903
## 17144 2021-01-08 Minnesota 27 432012 5688
## 17145 2021-01-08 Mississippi 28 233665 5101
## 17146 2021-01-08 Missouri 29 445310 6276
## 17147 2021-01-08 Montana 30 85668 1049
## 17148 2021-01-08 Nebraska 31 175655 1808
## 17149 2021-01-08 Nevada 32 244103 3409
## 17150 2021-01-08 New Hampshire 33 50152 846
## 17151 2021-01-08 New Jersey 34 571771 19756
## 17152 2021-01-08 New Mexico 35 153456 2712
## 17153 2021-01-08 New York 36 1101702 38846
## 17154 2021-01-08 North Carolina 37 605187 7383
## 17155 2021-01-08 North Dakota 38 94446 1360
## 17156 2021-01-08 Northern Mariana Islands 69 125 2
## 17157 2021-01-08 Ohio 39 762603 9544
## 17158 2021-01-08 Oklahoma 40 320586 2703
## 17159 2021-01-08 Oregon 41 122847 1590
## 17160 2021-01-08 Pennsylvania 42 709235 17427
## 17161 2021-01-08 Puerto Rico 72 115682 1592
## 17162 2021-01-08 Rhode Island 44 97614 1916
## 17163 2021-01-08 South Carolina 45 344176 5695
## 17164 2021-01-08 South Dakota 46 102580 1556
## 17165 2021-01-08 Tennessee 47 627776 7549
## 17166 2021-01-08 Texas 48 1934504 30109
## 17167 2021-01-08 Utah 49 301110 1383
## 17168 2021-01-08 Vermont 50 8619 156
## 17169 2021-01-08 Virgin Islands 78 2042 23
## 17170 2021-01-08 Virginia 51 387917 5312
## 17171 2021-01-08 Washington 53 273142 3768
## 17172 2021-01-08 West Virginia 54 97898 1554
## 17173 2021-01-08 Wisconsin 55 544618 5530
## 17174 2021-01-08 Wyoming 56 46647 489
## 17175 2021-01-09 Alabama 1 399150 5299
## 17176 2021-01-09 Alaska 2 49681 215
## 17177 2021-01-09 Arizona 4 611900 10083
## 17178 2021-01-09 Arkansas 5 251746 4010
## 17179 2021-01-09 California 6 2687450 29699
## 17180 2021-01-09 Colorado 8 360857 5262
## 17181 2021-01-09 Connecticut 9 205994 6324
## 17182 2021-01-09 Delaware 10 64475 969
## 17183 2021-01-09 District of Columbia 11 31457 813
## 17184 2021-01-09 Florida 12 1464689 22803
## 17185 2021-01-09 Georgia 13 724317 11096
## 17186 2021-01-09 Guam 66 8373 125
## 17187 2021-01-09 Hawaii 15 23122 305
## 17188 2021-01-09 Idaho 16 149316 1530
## 17189 2021-01-09 Illinois 17 1026639 19212
## 17190 2021-01-09 Indiana 18 561579 8966
## 17191 2021-01-09 Iowa 19 296171 4127
## 17192 2021-01-09 Kansas 20 245521 3148
## 17193 2021-01-09 Kentucky 21 303769 3214
## 17194 2021-01-09 Louisiana 22 341431 7833
## 17195 2021-01-09 Maine 23 29019 432
## 17196 2021-01-09 Maryland 24 303535 6246
## 17197 2021-01-09 Massachusetts 25 427135 13074
## 17198 2021-01-09 Michigan 26 559830 14134
## 17199 2021-01-09 Minnesota 27 434481 5731
## 17200 2021-01-09 Mississippi 28 236868 5146
## 17201 2021-01-09 Missouri 29 448586 6309
## 17202 2021-01-09 Montana 30 86116 1054
## 17203 2021-01-09 Nebraska 31 176645 1812
## 17204 2021-01-09 Nevada 32 246659 3457
## 17205 2021-01-09 New Hampshire 33 50871 862
## 17206 2021-01-09 New Jersey 34 579182 19854
## 17207 2021-01-09 New Mexico 35 154954 2734
## 17208 2021-01-09 New York 36 1119541 39041
## 17209 2021-01-09 North Carolina 37 614715 7468
## 17210 2021-01-09 North Dakota 38 94566 1360
## 17211 2021-01-09 Northern Mariana Islands 69 125 2
## 17212 2021-01-09 Ohio 39 770977 9599
## 17213 2021-01-09 Oklahoma 40 324875 2738
## 17214 2021-01-09 Oregon 41 124476 1607
## 17215 2021-01-09 Pennsylvania 42 718642 17681
## 17216 2021-01-09 Puerto Rico 72 116245 1616
## 17217 2021-01-09 Rhode Island 44 97614 1916
## 17218 2021-01-09 South Carolina 45 350084 5758
## 17219 2021-01-09 South Dakota 46 102901 1570
## 17220 2021-01-09 Tennessee 47 634222 7634
## 17221 2021-01-09 Texas 48 1952047 30441
## 17222 2021-01-09 Utah 49 303723 1392
## 17223 2021-01-09 Vermont 50 8790 156
## 17224 2021-01-09 Virgin Islands 78 2042 23
## 17225 2021-01-09 Virginia 51 393715 5381
## 17226 2021-01-09 Washington 53 275832 3775
## 17227 2021-01-09 West Virginia 54 99778 1570
## 17228 2021-01-09 Wisconsin 55 548134 5568
## 17229 2021-01-09 Wyoming 56 46719 489
## 17230 2021-01-10 Alabama 1 401900 5334
## 17231 2021-01-10 Alaska 2 49935 215
## 17232 2021-01-10 Arizona 4 618546 10141
## 17233 2021-01-10 Arkansas 5 255076 4043
## 17234 2021-01-10 California 6 2729858 30000
## 17235 2021-01-10 Colorado 8 363019 5279
## 17236 2021-01-10 Connecticut 9 205994 6324
## 17237 2021-01-10 Delaware 10 65273 972
## 17238 2021-01-10 District of Columbia 11 31791 817
## 17239 2021-01-10 Florida 12 1477002 22911
## 17240 2021-01-10 Georgia 13 732121 11097
## 17241 2021-01-10 Guam 66 8381 125
## 17242 2021-01-10 Hawaii 15 23300 306
## 17243 2021-01-10 Idaho 16 149742 1536
## 17244 2021-01-10 Illinois 17 1031288 19295
## 17245 2021-01-10 Indiana 18 566670 8985
## 17246 2021-01-10 Iowa 19 296682 4138
## 17247 2021-01-10 Kansas 20 245529 3148
## 17248 2021-01-10 Kentucky 21 306823 3224
## 17249 2021-01-10 Louisiana 22 346829 7873
## 17250 2021-01-10 Maine 23 29298 432
## 17251 2021-01-10 Maryland 24 306853 6272
## 17252 2021-01-10 Massachusetts 25 432791 13151
## 17253 2021-01-10 Michigan 26 559886 14134
## 17254 2021-01-10 Minnesota 27 436640 5775
## 17255 2021-01-10 Mississippi 28 239082 5167
## 17256 2021-01-10 Missouri 29 450886 6316
## 17257 2021-01-10 Montana 30 86324 1056
## 17258 2021-01-10 Nebraska 31 177001 1815
## 17259 2021-01-10 Nevada 32 248758 3470
## 17260 2021-01-10 New Hampshire 33 51600 869
## 17261 2021-01-10 New Jersey 34 584828 19886
## 17262 2021-01-10 New Mexico 35 156157 2751
## 17263 2021-01-10 New York 36 1135849 39208
## 17264 2021-01-10 North Carolina 37 623503 7609
## 17265 2021-01-10 North Dakota 38 94724 1360
## 17266 2021-01-10 Northern Mariana Islands 69 125 2
## 17267 2021-01-10 Ohio 39 777065 9627
## 17268 2021-01-10 Oklahoma 40 331362 2761
## 17269 2021-01-10 Oregon 41 125683 1607
## 17270 2021-01-10 Pennsylvania 42 725506 17780
## 17271 2021-01-10 Puerto Rico 72 116734 1630
## 17272 2021-01-10 Rhode Island 44 97614 1916
## 17273 2021-01-10 South Carolina 45 354525 5811
## 17274 2021-01-10 South Dakota 46 103318 1585
## 17275 2021-01-10 Tennessee 47 641123 7715
## 17276 2021-01-10 Texas 48 1966081 30599
## 17277 2021-01-10 Utah 49 305999 1393
## 17278 2021-01-10 Vermont 50 8967 156
## 17279 2021-01-10 Virgin Islands 78 2042 23
## 17280 2021-01-10 Virginia 51 398856 5383
## 17281 2021-01-10 Washington 53 276333 3776
## 17282 2021-01-10 West Virginia 54 101212 1582
## 17283 2021-01-10 Wisconsin 55 550260 5571
## 17284 2021-01-10 Wyoming 56 46832 489
## 17285 2021-01-11 Alabama 1 404000 5347
## 17286 2021-01-11 Alaska 2 50111 215
## 17287 2021-01-11 Arizona 4 627771 10147
## 17288 2021-01-11 Arkansas 5 256344 4081
## 17289 2021-01-11 California 6 2770482 30381
## 17290 2021-01-11 Colorado 8 364815 5291
## 17291 2021-01-11 Connecticut 9 213358 6416
## 17292 2021-01-11 Delaware 10 65827 986
## 17293 2021-01-11 District of Columbia 11 31993 821
## 17294 2021-01-11 Florida 12 1488578 23070
## 17295 2021-01-11 Georgia 13 740078 11113
## 17296 2021-01-11 Guam 66 8392 125
## 17297 2021-01-11 Hawaii 15 23462 306
## 17298 2021-01-11 Idaho 16 150557 1552
## 17299 2021-01-11 Illinois 17 1036450 19365
## 17300 2021-01-11 Indiana 18 570355 9016
## 17301 2021-01-11 Iowa 19 297774 4139
## 17302 2021-01-11 Kansas 20 250421 3255
## 17303 2021-01-11 Kentucky 21 309414 3247
## 17304 2021-01-11 Louisiana 22 348234 7918
## 17305 2021-01-11 Maine 23 29611 438
## 17306 2021-01-11 Maryland 24 309874 6301
## 17307 2021-01-11 Massachusetts 25 437042 13206
## 17308 2021-01-11 Michigan 26 565231 14183
## 17309 2021-01-11 Minnesota 27 437620 5779
## 17310 2021-01-11 Mississippi 28 240309 5186
## 17311 2021-01-11 Missouri 29 459493 6336
## 17312 2021-01-11 Montana 30 86757 1057
## 17313 2021-01-11 Nebraska 31 177655 1835
## 17314 2021-01-11 Nevada 32 250471 3503
## 17315 2021-01-11 New Hampshire 33 52307 869
## 17316 2021-01-11 New Jersey 34 590165 19932
## 17317 2021-01-11 New Mexico 35 157087 2766
## 17318 2021-01-11 New York 36 1150028 39404
## 17319 2021-01-11 North Carolina 37 631345 7635
## 17320 2021-01-11 North Dakota 38 94838 1360
## 17321 2021-01-11 Northern Mariana Islands 69 125 2
## 17322 2021-01-11 Ohio 39 784957 9702
## 17323 2021-01-11 Oklahoma 40 335247 2775
## 17324 2021-01-11 Oregon 41 126607 1628
## 17325 2021-01-11 Pennsylvania 42 731967 17861
## 17326 2021-01-11 Puerto Rico 72 117083 1642
## 17327 2021-01-11 Rhode Island 44 100607 1947
## 17328 2021-01-11 South Carolina 45 357654 5826
## 17329 2021-01-11 South Dakota 46 103499 1585
## 17330 2021-01-11 Tennessee 47 645378 7795
## 17331 2021-01-11 Texas 48 1989821 30720
## 17332 2021-01-11 Utah 49 307502 1400
## 17333 2021-01-11 Vermont 50 9078 156
## 17334 2021-01-11 Virgin Islands 78 2042 23
## 17335 2021-01-11 Virginia 51 403386 5393
## 17336 2021-01-11 Washington 53 281071 3793
## 17337 2021-01-11 West Virginia 54 102282 1594
## 17338 2021-01-11 Wisconsin 55 551942 5576
## 17339 2021-01-11 Wyoming 56 47395 489
## 17340 2021-01-12 Alabama 1 407848 5573
## 17341 2021-01-12 Alaska 2 50243 216
## 17342 2021-01-12 Arizona 4 638739 10537
## 17343 2021-01-12 Arkansas 5 259553 4121
## 17344 2021-01-12 California 6 2816366 31105
## 17345 2021-01-12 Colorado 8 366385 5326
## 17346 2021-01-12 Connecticut 9 217047 6449
## 17347 2021-01-12 Delaware 10 66446 991
## 17348 2021-01-12 District of Columbia 11 32423 825
## 17349 2021-01-12 Florida 12 1503474 23226
## 17350 2021-01-12 Georgia 13 749417 11297
## 17351 2021-01-12 Guam 66 8398 125
## 17352 2021-01-12 Hawaii 15 23570 306
## 17353 2021-01-12 Idaho 16 151474 1563
## 17354 2021-01-12 Illinois 17 1043041 19497
## 17355 2021-01-12 Indiana 18 573505 9104
## 17356 2021-01-12 Iowa 19 299254 4222
## 17357 2021-01-12 Kansas 20 250646 3255
## 17358 2021-01-12 Kentucky 21 312316 3284
## 17359 2021-01-12 Louisiana 22 352939 7971
## 17360 2021-01-12 Maine 23 30326 449
## 17361 2021-01-12 Maryland 24 312534 6367
## 17362 2021-01-12 Massachusetts 25 442529 13273
## 17363 2021-01-12 Michigan 26 567901 14286
## 17364 2021-01-12 Minnesota 27 438935 5792
## 17365 2021-01-12 Mississippi 28 241957 5284
## 17366 2021-01-12 Missouri 29 462085 6495
## 17367 2021-01-12 Montana 30 87179 1067
## 17368 2021-01-12 Nebraska 31 178690 1859
## 17369 2021-01-12 Nevada 32 253100 3551
## 17370 2021-01-12 New Hampshire 33 53148 878
## 17371 2021-01-12 New Jersey 34 594751 20039
## 17372 2021-01-12 New Mexico 35 157974 2796
## 17373 2021-01-12 New York 36 1164819 39588
## 17374 2021-01-12 North Carolina 37 636681 7687
## 17375 2021-01-12 North Dakota 38 94976 1363
## 17376 2021-01-12 Northern Mariana Islands 69 128 2
## 17377 2021-01-12 Ohio 39 792938 9802
## 17378 2021-01-12 Oklahoma 40 337457 2804
## 17379 2021-01-12 Oregon 41 127791 1669
## 17380 2021-01-12 Pennsylvania 42 739212 18091
## 17381 2021-01-12 Puerto Rico 72 118042 1645
## 17382 2021-01-12 Rhode Island 44 101393 1970
## 17383 2021-01-12 South Carolina 45 359357 5860
## 17384 2021-01-12 South Dakota 46 103743 1585
## 17385 2021-01-12 Tennessee 47 649227 7941
## 17386 2021-01-12 Texas 48 2017036 31017
## 17387 2021-01-12 Utah 49 309629 1422
## 17388 2021-01-12 Vermont 50 9247 158
## 17389 2021-01-12 Virgin Islands 78 2166 24
## 17390 2021-01-12 Virginia 51 407947 5477
## 17391 2021-01-12 Washington 53 283363 3869
## 17392 2021-01-12 West Virginia 54 103203 1634
## 17393 2021-01-12 Wisconsin 55 555249 5635
## 17394 2021-01-12 Wyoming 56 48072 522
## 17395 2021-01-13 Alabama 1 410995 5760
## 17396 2021-01-13 Alaska 2 50526 217
## 17397 2021-01-13 Arizona 4 643683 10689
## 17398 2021-01-13 Arkansas 5 262020 4186
## 17399 2021-01-13 California 6 2858041 31653
## 17400 2021-01-13 Colorado 8 368775 5354
## 17401 2021-01-13 Connecticut 9 220576 6536
## 17402 2021-01-13 Delaware 10 67173 994
## 17403 2021-01-13 District of Columbia 11 32600 831
## 17404 2021-01-13 Florida 12 1517464 23395
## 17405 2021-01-13 Georgia 13 757993 11435
## 17406 2021-01-13 Guam 66 8413 125
## 17407 2021-01-13 Hawaii 15 23663 309
## 17408 2021-01-13 Idaho 16 152560 1576
## 17409 2021-01-13 Illinois 17 1048784 19619
## 17410 2021-01-13 Indiana 18 577153 9163
## 17411 2021-01-13 Iowa 19 301161 4232
## 17412 2021-01-13 Kansas 20 255200 3355
## 17413 2021-01-13 Kentucky 21 316673 3324
## 17414 2021-01-13 Louisiana 22 355835 8022
## 17415 2021-01-13 Maine 23 31150 453
## 17416 2021-01-13 Maryland 24 315055 6404
## 17417 2021-01-13 Massachusetts 25 448447 13359
## 17418 2021-01-13 Michigan 26 571014 14325
## 17419 2021-01-13 Minnesota 27 440422 5842
## 17420 2021-01-13 Mississippi 28 243899 5315
## 17421 2021-01-13 Missouri 29 464620 6538
## 17422 2021-01-13 Montana 30 87759 1069
## 17423 2021-01-13 Nebraska 31 180160 1870
## 17424 2021-01-13 Nevada 32 254043 3596
## 17425 2021-01-13 New Hampshire 33 54125 885
## 17426 2021-01-13 New Jersey 34 602629 20166
## 17427 2021-01-13 New Mexico 35 159119 2809
## 17428 2021-01-13 New York 36 1179523 39760
## 17429 2021-01-13 North Carolina 37 642003 7796
## 17430 2021-01-13 North Dakota 38 95142 1364
## 17431 2021-01-13 Northern Mariana Islands 69 128 2
## 17432 2021-01-13 Ohio 39 799639 9881
## 17433 2021-01-13 Oklahoma 40 341364 2848
## 17434 2021-01-13 Oregon 41 129109 1716
## 17435 2021-01-13 Pennsylvania 42 747245 18458
## 17436 2021-01-13 Puerto Rico 72 118254 1659
## 17437 2021-01-13 Rhode Island 44 102485 1987
## 17438 2021-01-13 South Carolina 45 365378 5911
## 17439 2021-01-13 South Dakota 46 104195 1604
## 17440 2021-01-13 Tennessee 47 653568 8072
## 17441 2021-01-13 Texas 48 2040144 31396
## 17442 2021-01-13 Utah 49 314817 1449
## 17443 2021-01-13 Vermont 50 9368 158
## 17444 2021-01-13 Virgin Islands 78 2166 24
## 17445 2021-01-13 Virginia 51 412545 5552
## 17446 2021-01-13 Washington 53 285690 3909
## 17447 2021-01-13 West Virginia 54 104392 1671
## 17448 2021-01-13 Wisconsin 55 558020 5679
## 17449 2021-01-13 Wyoming 56 48289 522
## 17450 2021-01-14 Alabama 1 414583 5945
## 17451 2021-01-14 Alaska 2 50861 219
## 17452 2021-01-14 Arizona 4 653546 10876
## 17453 2021-01-14 Arkansas 5 264511 4228
## 17454 2021-01-14 California 6 2898756 32246
## 17455 2021-01-14 Colorado 8 371362 5385
## 17456 2021-01-14 Connecticut 9 221544 6553
## 17457 2021-01-14 Delaware 10 68065 995
## 17458 2021-01-14 District of Columbia 11 32820 842
## 17459 2021-01-14 Florida 12 1531184 23612
## 17460 2021-01-14 Georgia 13 766917 11599
## 17461 2021-01-14 Guam 66 8426 125
## 17462 2021-01-14 Hawaii 15 23827 315
## 17463 2021-01-14 Idaho 16 153506 1593
## 17464 2021-01-14 Illinois 17 1055550 19728
## 17465 2021-01-14 Indiana 18 581534 9202
## 17466 2021-01-14 Iowa 19 302559 4251
## 17467 2021-01-14 Kansas 20 255393 3355
## 17468 2021-01-14 Kentucky 21 320466 3373
## 17469 2021-01-14 Louisiana 22 361148 8080
## 17470 2021-01-14 Maine 23 31958 461
## 17471 2021-01-14 Maryland 24 318002 6449
## 17472 2021-01-14 Massachusetts 25 454402 13433
## 17473 2021-01-14 Michigan 26 574675 14500
## 17474 2021-01-14 Minnesota 27 442003 5885
## 17475 2021-01-14 Mississippi 28 245847 5356
## 17476 2021-01-14 Missouri 29 467633 6590
## 17477 2021-01-14 Montana 30 88190 1079
## 17478 2021-01-14 Nebraska 31 181091 1885
## 17479 2021-01-14 Nevada 32 256463 3664
## 17480 2021-01-14 New Hampshire 33 54778 897
## 17481 2021-01-14 New Jersey 34 609721 20253
## 17482 2021-01-14 New Mexico 35 160543 2838
## 17483 2021-01-14 New York 36 1193710 39997
## 17484 2021-01-14 North Carolina 37 650815 7888
## 17485 2021-01-14 North Dakota 38 95385 1372
## 17486 2021-01-14 Northern Mariana Islands 69 128 2
## 17487 2021-01-14 Ohio 39 807293 9990
## 17488 2021-01-14 Oklahoma 40 344506 2882
## 17489 2021-01-14 Oregon 41 130246 1737
## 17490 2021-01-14 Pennsylvania 42 754441 18752
## 17491 2021-01-14 Puerto Rico 72 118431 1679
## 17492 2021-01-14 Rhode Island 44 103386 1996
## 17493 2021-01-14 South Carolina 45 371180 5934
## 17494 2021-01-14 South Dakota 46 104512 1614
## 17495 2021-01-14 Tennessee 47 658431 8155
## 17496 2021-01-14 Texas 48 2070044 31819
## 17497 2021-01-14 Utah 49 317559 1461
## 17498 2021-01-14 Vermont 50 9573 162
## 17499 2021-01-14 Virgin Islands 78 2166 24
## 17500 2021-01-14 Virginia 51 417839 5626
## 17501 2021-01-14 Washington 53 288127 3949
## 17502 2021-01-14 West Virginia 54 105219 1702
## 17503 2021-01-14 Wisconsin 55 561160 5729
## 17504 2021-01-14 Wyoming 56 48701 522
## 17505 2021-01-15 Alabama 1 417528 6030
## 17506 2021-01-15 Alaska 2 51163 220
## 17507 2021-01-15 Arizona 4 662597 11060
## 17508 2021-01-15 Arkansas 5 267635 4263
## 17509 2021-01-15 California 6 2937860 32947
## 17510 2021-01-15 Colorado 8 373647 5417
## 17511 2021-01-15 Connecticut 9 223422 6594
## 17512 2021-01-15 Delaware 10 68727 1002
## 17513 2021-01-15 District of Columbia 11 33140 842
## 17514 2021-01-15 Florida 12 1548059 23798
## 17515 2021-01-15 Georgia 13 776485 11757
## 17516 2021-01-15 Guam 66 8443 126
## 17517 2021-01-15 Hawaii 15 24032 315
## 17518 2021-01-15 Idaho 16 154785 1606
## 17519 2021-01-15 Illinois 17 1062121 19876
## 17520 2021-01-15 Indiana 18 586206 9246
## 17521 2021-01-15 Iowa 19 303927 4257
## 17522 2021-01-15 Kansas 20 259196 3514
## 17523 2021-01-15 Kentucky 21 324505 3395
## 17524 2021-01-15 Louisiana 22 364853 8080
## 17525 2021-01-15 Maine 23 32781 477
## 17526 2021-01-15 Maryland 24 320923 6494
## 17527 2021-01-15 Massachusetts 25 459927 13509
## 17528 2021-01-15 Michigan 26 577657 14539
## 17529 2021-01-15 Minnesota 27 443630 5918
## 17530 2021-01-15 Mississippi 28 248189 5411
## 17531 2021-01-15 Missouri 29 470284 6619
## 17532 2021-01-15 Montana 30 88725 1086
## 17533 2021-01-15 Nebraska 31 181895 1904
## 17534 2021-01-15 Nevada 32 258438 3704
## 17535 2021-01-15 New Hampshire 33 55500 908
## 17536 2021-01-15 New Jersey 34 616086 20320
## 17537 2021-01-15 New Mexico 35 161805 2876
## 17538 2021-01-15 New York 36 1213179 40203
## 17539 2021-01-15 North Carolina 37 659707 7996
## 17540 2021-01-15 North Dakota 38 95621 1395
## 17541 2021-01-15 Northern Mariana Islands 69 128 2
## 17542 2021-01-15 Ohio 39 814442 10057
## 17543 2021-01-15 Oklahoma 40 348044 2925
## 17544 2021-01-15 Oregon 41 131296 1763
## 17545 2021-01-15 Pennsylvania 42 760552 18978
## 17546 2021-01-15 Puerto Rico 72 119569 1692
## 17547 2021-01-15 Rhode Island 44 104443 2005
## 17548 2021-01-15 South Carolina 45 375967 6037
## 17549 2021-01-15 South Dakota 46 104937 1629
## 17550 2021-01-15 Tennessee 47 663486 8233
## 17551 2021-01-15 Texas 48 2094606 32212
## 17552 2021-01-15 Utah 49 320175 1475
## 17553 2021-01-15 Vermont 50 9734 163
## 17554 2021-01-15 Virgin Islands 78 2166 24
## 17555 2021-01-15 Virginia 51 422634 5656
## 17556 2021-01-15 Washington 53 290288 3972
## 17557 2021-01-15 West Virginia 54 106649 1733
## 17558 2021-01-15 Wisconsin 55 563866 5771
## 17559 2021-01-15 Wyoming 56 48909 522
## 17560 2021-01-16 Alabama 1 420681 6119
## 17561 2021-01-16 Alaska 2 51347 220
## 17562 2021-01-16 Arizona 4 670234 11248
## 17563 2021-01-16 Arkansas 5 270178 4293
## 17564 2021-01-16 California 6 2975419 33393
## 17565 2021-01-16 Colorado 8 375463 5440
## 17566 2021-01-16 Connecticut 9 223422 6594
## 17567 2021-01-16 Delaware 10 69372 1016
## 17568 2021-01-16 District of Columbia 11 33537 847
## 17569 2021-01-16 Florida 12 1560178 24003
## 17570 2021-01-16 Georgia 13 785048 11900
## 17571 2021-01-16 Guam 66 8450 127
## 17572 2021-01-16 Hawaii 15 24188 317
## 17573 2021-01-16 Idaho 16 155357 1607
## 17574 2021-01-16 Illinois 17 1067230 20021
## 17575 2021-01-16 Indiana 18 590093 9287
## 17576 2021-01-16 Iowa 19 304748 4321
## 17577 2021-01-16 Kansas 20 259226 3502
## 17578 2021-01-16 Kentucky 21 327538 3420
## 17579 2021-01-16 Louisiana 22 364853 8080
## 17580 2021-01-16 Maine 23 33219 507
## 17581 2021-01-16 Maryland 24 324203 6541
## 17582 2021-01-16 Massachusetts 25 465726 13583
## 17583 2021-01-16 Michigan 26 579669 14658
## 17584 2021-01-16 Minnesota 27 445115 5955
## 17585 2021-01-16 Mississippi 28 250869 5481
## 17586 2021-01-16 Missouri 29 472057 6644
## 17587 2021-01-16 Montana 30 89056 1088
## 17588 2021-01-16 Nebraska 31 181895 1904
## 17589 2021-01-16 Nevada 32 260222 3764
## 17590 2021-01-16 New Hampshire 33 55945 927
## 17591 2021-01-16 New Jersey 34 622085 20414
## 17592 2021-01-16 New Mexico 35 162893 2912
## 17593 2021-01-16 New York 36 1229124 40376
## 17594 2021-01-16 North Carolina 37 668165 8060
## 17595 2021-01-16 North Dakota 38 95736 1403
## 17596 2021-01-16 Northern Mariana Islands 69 128 2
## 17597 2021-01-16 Ohio 39 821507 10135
## 17598 2021-01-16 Oklahoma 40 351665 2952
## 17599 2021-01-16 Oregon 41 132412 1800
## 17600 2021-01-16 Pennsylvania 42 767074 19188
## 17601 2021-01-16 Puerto Rico 72 120138 1703
## 17602 2021-01-16 Rhode Island 44 104443 2005
## 17603 2021-01-16 South Carolina 45 382422 6108
## 17604 2021-01-16 South Dakota 46 105278 1633
## 17605 2021-01-16 Tennessee 47 668142 8276
## 17606 2021-01-16 Texas 48 2112925 32581
## 17607 2021-01-16 Utah 49 322252 1486
## 17608 2021-01-16 Vermont 50 9915 163
## 17609 2021-01-16 Virgin Islands 78 2166 24
## 17610 2021-01-16 Virginia 51 429391 5706
## 17611 2021-01-16 Washington 53 290896 3971
## 17612 2021-01-16 West Virginia 54 108124 1761
## 17613 2021-01-16 Wisconsin 55 566275 5906
## 17614 2021-01-16 Wyoming 56 49068 522
## 17615 2021-01-17 Alabama 1 422598 6120
## 17616 2021-01-17 Alaska 2 51630 220
## 17617 2021-01-17 Arizona 4 673882 11266
## 17618 2021-01-17 Arkansas 5 271154 4311
## 17619 2021-01-17 California 6 3006966 33593
## 17620 2021-01-17 Colorado 8 376921 5454
## 17621 2021-01-17 Connecticut 9 223422 6594
## 17622 2021-01-17 Delaware 10 70294 1016
## 17623 2021-01-17 District of Columbia 11 33851 850
## 17624 2021-01-17 Florida 12 1571271 24136
## 17625 2021-01-17 Georgia 13 791322 11906
## 17626 2021-01-17 Guam 66 8453 128
## 17627 2021-01-17 Hawaii 15 24309 319
## 17628 2021-01-17 Idaho 16 155617 1609
## 17629 2021-01-17 Illinois 17 1071307 20052
## 17630 2021-01-17 Indiana 18 593262 9310
## 17631 2021-01-17 Iowa 19 305151 4323
## 17632 2021-01-17 Kansas 20 259226 3502
## 17633 2021-01-17 Kentucky 21 329816 3428
## 17634 2021-01-17 Louisiana 22 368980 8203
## 17635 2021-01-17 Maine 23 33559 511
## 17636 2021-01-17 Maryland 24 326648 6567
## 17637 2021-01-17 Massachusetts 25 470140 13652
## 17638 2021-01-17 Michigan 26 579767 14658
## 17639 2021-01-17 Minnesota 27 446448 5995
## 17640 2021-01-17 Mississippi 28 252475 5521
## 17641 2021-01-17 Missouri 29 473268 6647
## 17642 2021-01-17 Montana 30 89393 1092
## 17643 2021-01-17 Nebraska 31 182914 1905
## 17644 2021-01-17 Nevada 32 261847 3784
## 17645 2021-01-17 New Hampshire 33 56864 933
## 17646 2021-01-17 New Jersey 34 627221 20439
## 17647 2021-01-17 New Mexico 35 163637 2934
## 17648 2021-01-17 New York 36 1242818 40570
## 17649 2021-01-17 North Carolina 37 674771 8125
## 17650 2021-01-17 North Dakota 38 95886 1406
## 17651 2021-01-17 Northern Mariana Islands 69 128 2
## 17652 2021-01-17 Ohio 39 826754 10200
## 17653 2021-01-17 Oklahoma 40 354979 2987
## 17654 2021-01-17 Oregon 41 133205 1801
## 17655 2021-01-17 Pennsylvania 42 772747 19310
## 17656 2021-01-17 Puerto Rico 72 120996 1703
## 17657 2021-01-17 Rhode Island 44 104443 2005
## 17658 2021-01-17 South Carolina 45 388184 6237
## 17659 2021-01-17 South Dakota 46 105544 1656
## 17660 2021-01-17 Tennessee 47 672292 8312
## 17661 2021-01-17 Texas 48 2125391 32747
## 17662 2021-01-17 Utah 49 323837 1493
## 17663 2021-01-17 Vermont 50 10057 163
## 17664 2021-01-17 Virgin Islands 78 2260 24
## 17665 2021-01-17 Virginia 51 439305 5729
## 17666 2021-01-17 Washington 53 293296 3971
## 17667 2021-01-17 West Virginia 54 108821 1776
## 17668 2021-01-17 Wisconsin 55 568166 5907
## 17669 2021-01-17 Wyoming 56 49363 522
## 17670 2021-01-18 Alabama 1 424028 6121
## 17671 2021-01-18 Alaska 2 51785 220
## 17672 2021-01-18 Arizona 4 679282 11265
## 17673 2021-01-18 Arkansas 5 272263 4343
## 17674 2021-01-18 California 6 3032359 33742
## 17675 2021-01-18 Colorado 8 378311 5462
## 17676 2021-01-18 Connecticut 9 230125 6670
## 17677 2021-01-18 Delaware 10 70910 1016
## 17678 2021-01-18 District of Columbia 11 34033 857
## 17679 2021-01-18 Florida 12 1579273 24273
## 17680 2021-01-18 Georgia 13 796307 11967
## 17681 2021-01-18 Guam 66 8454 129
## 17682 2021-01-18 Hawaii 15 24424 319
## 17683 2021-01-18 Idaho 16 155641 1609
## 17684 2021-01-18 Illinois 17 1074719 20119
## 17685 2021-01-18 Indiana 18 595760 9340
## 17686 2021-01-18 Iowa 19 306082 4324
## 17687 2021-01-18 Kansas 20 262519 3525
## 17688 2021-01-18 Kentucky 21 331982 3462
## 17689 2021-01-18 Louisiana 22 369951 8253
## 17690 2021-01-18 Maine 23 33876 514
## 17691 2021-01-18 Maryland 24 328417 6596
## 17692 2021-01-18 Massachusetts 25 473441 13705
## 17693 2021-01-18 Michigan 26 583202 14677
## 17694 2021-01-18 Minnesota 27 447417 6007
## 17695 2021-01-18 Mississippi 28 253932 5524
## 17696 2021-01-18 Missouri 29 474403 6655
## 17697 2021-01-18 Montana 30 89584 1093
## 17698 2021-01-18 Nebraska 31 183228 1908
## 17699 2021-01-18 Nevada 32 262867 3784
## 17700 2021-01-18 New Hampshire 33 57864 933
## 17701 2021-01-18 New Jersey 34 631074 20458
## 17702 2021-01-18 New Mexico 35 164263 2960
## 17703 2021-01-18 New York 36 1256228 40753
## 17704 2021-01-18 North Carolina 37 674508 8131
## 17705 2021-01-18 North Dakota 38 95956 1406
## 17706 2021-01-18 Northern Mariana Islands 69 128 2
## 17707 2021-01-18 Ohio 39 831066 10281
## 17708 2021-01-18 Oklahoma 40 356816 2994
## 17709 2021-01-18 Oregon 41 133851 1811
## 17710 2021-01-18 Pennsylvania 42 776490 19390
## 17711 2021-01-18 Puerto Rico 72 121554 1703
## 17712 2021-01-18 Rhode Island 44 104443 2005
## 17713 2021-01-18 South Carolina 45 391464 6248
## 17714 2021-01-18 South Dakota 46 105659 1667
## 17715 2021-01-18 Tennessee 47 674915 8350
## 17716 2021-01-18 Texas 48 2136595 32858
## 17717 2021-01-18 Utah 49 324919 1500
## 17718 2021-01-18 Vermont 50 10220 163
## 17719 2021-01-18 Virgin Islands 78 2260 24
## 17720 2021-01-18 Virginia 51 446550 5739
## 17721 2021-01-18 Washington 53 293739 3974
## 17722 2021-01-18 West Virginia 54 109809 1784
## 17723 2021-01-18 Wisconsin 55 569335 5930
## 17724 2021-01-18 Wyoming 56 49708 522
## 17725 2021-01-19 Alabama 1 426543 6126
## 17726 2021-01-19 Alaska 2 51914 221
## 17727 2021-01-19 Arizona 4 686028 11266
## 17728 2021-01-19 Arkansas 5 273594 4386
## 17729 2021-01-19 California 6 3071465 34390
## 17730 2021-01-19 Colorado 8 379999 5473
## 17731 2021-01-19 Connecticut 9 232219 6682
## 17732 2021-01-19 Delaware 10 71311 1021
## 17733 2021-01-19 District of Columbia 11 34259 861
## 17734 2021-01-19 Florida 12 1589089 24435
## 17735 2021-01-19 Georgia 13 804508 12179
## 17736 2021-01-19 Guam 66 8484 129
## 17737 2021-01-19 Hawaii 15 24483 321
## 17738 2021-01-19 Idaho 16 157069 1639
## 17739 2021-01-19 Illinois 17 1079307 20154
## 17740 2021-01-19 Indiana 18 598494 9466
## 17741 2021-01-19 Iowa 19 307302 4332
## 17742 2021-01-19 Kansas 20 262727 3526
## 17743 2021-01-19 Kentucky 21 334347 3489
## 17744 2021-01-19 Louisiana 22 372089 8324
## 17745 2021-01-19 Maine 23 34262 519
## 17746 2021-01-19 Maryland 24 330390 6650
## 17747 2021-01-19 Massachusetts 25 476526 13749
## 17748 2021-01-19 Michigan 26 585548 14724
## 17749 2021-01-19 Minnesota 27 448336 6013
## 17750 2021-01-19 Mississippi 28 255125 5574
## 17751 2021-01-19 Missouri 29 477420 6672
## 17752 2021-01-19 Montana 30 89952 1093
## 17753 2021-01-19 Nebraska 31 183687 1914
## 17754 2021-01-19 Nevada 32 264223 3794
## 17755 2021-01-19 New Hampshire 33 58709 938
## 17756 2021-01-19 New Jersey 34 635701 20512
## 17757 2021-01-19 New Mexico 35 164954 2977
## 17758 2021-01-19 New York 36 1268949 40933
## 17759 2021-01-19 North Carolina 37 683971 8196
## 17760 2021-01-19 North Dakota 38 96093 1408
## 17761 2021-01-19 Northern Mariana Islands 69 129 2
## 17762 2021-01-19 Ohio 39 836055 10336
## 17763 2021-01-19 Oklahoma 40 358374 3037
## 17764 2021-01-19 Oregon 41 134468 1816
## 17765 2021-01-19 Pennsylvania 42 783355 19467
## 17766 2021-01-19 Puerto Rico 72 121988 1703
## 17767 2021-01-19 Rhode Island 44 107066 2045
## 17768 2021-01-19 South Carolina 45 394318 6259
## 17769 2021-01-19 South Dakota 46 105786 1667
## 17770 2021-01-19 Tennessee 47 677425 8391
## 17771 2021-01-19 Texas 48 2158462 33176
## 17772 2021-01-19 Utah 49 326221 1507
## 17773 2021-01-19 Vermont 50 10321 163
## 17774 2021-01-19 Virgin Islands 78 2283 24
## 17775 2021-01-19 Virginia 51 451076 5798
## 17776 2021-01-19 Washington 53 296519 4020
## 17777 2021-01-19 West Virginia 54 110820 1815
## 17778 2021-01-19 Wisconsin 55 571268 5974
## 17779 2021-01-19 Wyoming 56 49922 550
## 17780 2021-01-20 Alabama 1 429655 6283
## 17781 2021-01-20 Alaska 2 52081 244
## 17782 2021-01-20 Arizona 4 693706 11564
## 17783 2021-01-20 Arkansas 5 276114 4441
## 17784 2021-01-20 California 6 3090794 35001
## 17785 2021-01-20 Colorado 8 381414 5509
## 17786 2021-01-20 Connecticut 9 234134 6726
## 17787 2021-01-20 Delaware 10 71775 1026
## 17788 2021-01-20 District of Columbia 11 34403 863
## 17789 2021-01-20 Florida 12 1601003 24577
## 17790 2021-01-20 Georgia 13 812454 12373
## 17791 2021-01-20 Guam 66 8484 129
## 17792 2021-01-20 Hawaii 15 24551 322
## 17793 2021-01-20 Idaho 16 157745 1637
## 17794 2021-01-20 Illinois 17 1084134 20285
## 17795 2021-01-20 Indiana 18 601380 9529
## 17796 2021-01-20 Iowa 19 308787 4394
## 17797 2021-01-20 Kansas 20 266251 3584
## 17798 2021-01-20 Kentucky 21 337788 3540
## 17799 2021-01-20 Louisiana 22 374582 8383
## 17800 2021-01-20 Maine 23 34963 530
## 17801 2021-01-20 Maryland 24 332558 6689
## 17802 2021-01-20 Massachusetts 25 481040 13829
## 17803 2021-01-20 Michigan 26 587963 14759
## 17804 2021-01-20 Minnesota 27 449560 6047
## 17805 2021-01-20 Mississippi 28 256827 5638
## 17806 2021-01-20 Missouri 29 479480 6868
## 17807 2021-01-20 Montana 30 90349 1094
## 17808 2021-01-20 Nebraska 31 185656 1936
## 17809 2021-01-20 Nevada 32 265228 3869
## 17810 2021-01-20 New Hampshire 33 59437 950
## 17811 2021-01-20 New Jersey 34 641140 20667
## 17812 2021-01-20 New Mexico 35 165835 3011
## 17813 2021-01-20 New York 36 1280068 41148
## 17814 2021-01-20 North Carolina 37 691760 8267
## 17815 2021-01-20 North Dakota 38 96244 1409
## 17816 2021-01-20 Northern Mariana Islands 69 129 2
## 17817 2021-01-20 Ohio 39 842433 10409
## 17818 2021-01-20 Oklahoma 40 360360 3085
## 17819 2021-01-20 Oregon 41 135143 1841
## 17820 2021-01-20 Pennsylvania 42 789029 19868
## 17821 2021-01-20 Puerto Rico 72 122128 1717
## 17822 2021-01-20 Rhode Island 44 107876 2058
## 17823 2021-01-20 South Carolina 45 399843 6328
## 17824 2021-01-20 South Dakota 46 106063 1667
## 17825 2021-01-20 Tennessee 47 681451 8477
## 17826 2021-01-20 Texas 48 2186469 33632
## 17827 2021-01-20 Utah 49 328380 1518
## 17828 2021-01-20 Vermont 50 10471 165
## 17829 2021-01-20 Virgin Islands 78 2305 24
## 17830 2021-01-20 Virginia 51 455591 5861
## 17831 2021-01-20 Washington 53 298487 4021
## 17832 2021-01-20 West Virginia 54 111677 1836
## 17833 2021-01-20 Wisconsin 55 573119 6036
## 17834 2021-01-20 Wyoming 56 50124 550
## 17835 2021-01-21 Alabama 1 432536 6379
## 17836 2021-01-21 Alaska 2 52282 245
## 17837 2021-01-21 Arizona 4 703249 11813
## 17838 2021-01-21 Arkansas 5 279220 4496
## 17839 2021-01-21 California 6 3116369 35704
## 17840 2021-01-21 Colorado 8 382918 5523
## 17841 2021-01-21 Connecticut 9 235796 6774
## 17842 2021-01-21 Delaware 10 72523 1027
## 17843 2021-01-21 District of Columbia 11 34612 864
## 17844 2021-01-21 Florida 12 1613876 24738
## 17845 2021-01-21 Georgia 13 820513 12484
## 17846 2021-01-21 Guam 66 8497 129
## 17847 2021-01-21 Hawaii 15 24663 325
## 17848 2021-01-21 Idaho 16 158400 1658
## 17849 2021-01-21 Illinois 17 1089010 20423
## 17850 2021-01-21 Indiana 18 605004 9593
## 17851 2021-01-21 Iowa 19 310440 4445
## 17852 2021-01-21 Kansas 20 266562 3575
## 17853 2021-01-21 Kentucky 21 341343 3584
## 17854 2021-01-21 Louisiana 22 378318 8442
## 17855 2021-01-21 Maine 23 35638 536
## 17856 2021-01-21 Maryland 24 334725 6735
## 17857 2021-01-21 Massachusetts 25 486180 13906
## 17858 2021-01-21 Michigan 26 590546 14922
## 17859 2021-01-21 Minnesota 27 450830 6079
## 17860 2021-01-21 Mississippi 28 259117 5668
## 17861 2021-01-21 Missouri 29 481962 6909
## 17862 2021-01-21 Montana 30 90742 1102
## 17863 2021-01-21 Nebraska 31 186472 1949
## 17864 2021-01-21 Nevada 32 266643 3915
## 17865 2021-01-21 New Hampshire 33 60294 962
## 17866 2021-01-21 New Jersey 34 646188 20760
## 17867 2021-01-21 New Mexico 35 166823 3046
## 17868 2021-01-21 New York 36 1293976 41348
## 17869 2021-01-21 North Carolina 37 697660 8397
## 17870 2021-01-21 North Dakota 38 96392 1422
## 17871 2021-01-21 Northern Mariana Islands 69 129 2
## 17872 2021-01-21 Ohio 39 849704 10518
## 17873 2021-01-21 Oklahoma 40 363046 3140
## 17874 2021-01-21 Oregon 41 135973 1850
## 17875 2021-01-21 Pennsylvania 42 794632 20128
## 17876 2021-01-21 Puerto Rico 72 122343 1732
## 17877 2021-01-21 Rhode Island 44 108786 2076
## 17878 2021-01-21 South Carolina 45 404492 6373
## 17879 2021-01-21 South Dakota 46 106400 1673
## 17880 2021-01-21 Tennessee 47 685037 8606
## 17881 2021-01-21 Texas 48 2207935 34075
## 17882 2021-01-21 Utah 49 330469 1548
## 17883 2021-01-21 Vermont 50 10580 168
## 17884 2021-01-21 Virgin Islands 78 2305 24
## 17885 2021-01-21 Virginia 51 459604 5940
## 17886 2021-01-21 Washington 53 300420 4131
## 17887 2021-01-21 West Virginia 54 112617 1849
## 17888 2021-01-21 Wisconsin 55 575688 6091
## 17889 2021-01-21 Wyoming 56 50424 550
## 17890 2021-01-22 Alabama 1 436087 6486
## 17891 2021-01-22 Alaska 2 52572 245
## 17892 2021-01-22 Arizona 4 710273 12014
## 17893 2021-01-22 Arkansas 5 281382 4549
## 17894 2021-01-22 California 6 3141404 36326
## 17895 2021-01-22 Colorado 8 385153 5548
## 17896 2021-01-22 Connecticut 9 237815 6819
## 17897 2021-01-22 Delaware 10 73233 1027
## 17898 2021-01-22 District of Columbia 11 34905 867
## 17899 2021-01-22 Florida 12 1627595 25010
## 17900 2021-01-22 Georgia 13 829023 12653
## 17901 2021-01-22 Guam 66 8516 129
## 17902 2021-01-22 Hawaii 15 24823 329
## 17903 2021-01-22 Idaho 16 159000 1669
## 17904 2021-01-22 Illinois 17 1095917 20535
## 17905 2021-01-22 Indiana 18 608498 9642
## 17906 2021-01-22 Iowa 19 311695 4478
## 17907 2021-01-22 Kansas 20 269611 3598
## 17908 2021-01-22 Kentucky 21 344565 3626
## 17909 2021-01-22 Louisiana 22 380255 8483
## 17910 2021-01-22 Maine 23 36274 540
## 17911 2021-01-22 Maryland 24 337129 6792
## 17912 2021-01-22 Massachusetts 25 491452 13987
## 17913 2021-01-22 Michigan 26 593068 14940
## 17914 2021-01-22 Minnesota 27 452336 6100
## 17915 2021-01-22 Mississippi 28 261167 5713
## 17916 2021-01-22 Missouri 29 484370 6932
## 17917 2021-01-22 Montana 30 91145 1106
## 17918 2021-01-22 Nebraska 31 187496 1960
## 17919 2021-01-22 Nevada 32 268344 3967
## 17920 2021-01-22 New Hampshire 33 60951 971
## 17921 2021-01-22 New Jersey 34 650388 20875
## 17922 2021-01-22 New Mexico 35 167731 3079
## 17923 2021-01-22 New York 36 1309660 41530
## 17924 2021-01-22 North Carolina 37 706948 8511
## 17925 2021-01-22 North Dakota 38 96592 1428
## 17926 2021-01-22 Northern Mariana Islands 69 129 2
## 17927 2021-01-22 Ohio 39 853982 10599
## 17928 2021-01-22 Oklahoma 40 365992 3187
## 17929 2021-01-22 Oregon 41 136839 1874
## 17930 2021-01-22 Pennsylvania 42 799948 20322
## 17931 2021-01-22 Puerto Rico 72 122897 1761
## 17932 2021-01-22 Rhode Island 44 109735 2083
## 17933 2021-01-22 South Carolina 45 409188 6404
## 17934 2021-01-22 South Dakota 46 106716 1684
## 17935 2021-01-22 Tennessee 47 688782 8695
## 17936 2021-01-22 Texas 48 2226203 34496
## 17937 2021-01-22 Utah 49 333118 1571
## 17938 2021-01-22 Vermont 50 10759 169
## 17939 2021-01-22 Virgin Islands 78 2321 24
## 17940 2021-01-22 Virginia 51 463751 6002
## 17941 2021-01-22 Washington 53 302546 4178
## 17942 2021-01-22 West Virginia 54 113615 1856
## 17943 2021-01-22 Wisconsin 55 577991 6140
## 17944 2021-01-22 Wyoming 56 50583 571
## 17945 2021-01-23 Alabama 1 439442 6657
## 17946 2021-01-23 Alaska 2 52820 250
## 17947 2021-01-23 Arizona 4 717593 12170
## 17948 2021-01-23 Arkansas 5 282995 4563
## 17949 2021-01-23 California 6 3164386 36818
## 17950 2021-01-23 Colorado 8 386432 5561
## 17951 2021-01-23 Connecticut 9 237815 6819
## 17952 2021-01-23 Delaware 10 73915 1036
## 17953 2021-01-23 District of Columbia 11 35077 870
## 17954 2021-01-23 Florida 12 1639906 25163
## 17955 2021-01-23 Georgia 13 838057 12834
## 17956 2021-01-23 Guam 66 8516 129
## 17957 2021-01-23 Hawaii 15 24950 333
## 17958 2021-01-23 Idaho 16 159406 1670
## 17959 2021-01-23 Illinois 17 1101037 20645
## 17960 2021-01-23 Indiana 18 611600 9693
## 17961 2021-01-23 Iowa 19 312625 4486
## 17962 2021-01-23 Kansas 20 269611 3598
## 17963 2021-01-23 Kentucky 21 348040 3657
## 17964 2021-01-23 Louisiana 22 380255 8483
## 17965 2021-01-23 Maine 23 36598 544
## 17966 2021-01-23 Maryland 24 339482 6837
## 17967 2021-01-23 Massachusetts 25 496093 14064
## 17968 2021-01-23 Michigan 26 594666 15170
## 17969 2021-01-23 Minnesota 27 453876 6131
## 17970 2021-01-23 Mississippi 28 263023 5752
## 17971 2021-01-23 Missouri 29 485926 6949
## 17972 2021-01-23 Montana 30 91448 1142
## 17973 2021-01-23 Nebraska 31 187974 1966
## 17974 2021-01-23 Nevada 32 269928 4017
## 17975 2021-01-23 New Hampshire 33 61576 981
## 17976 2021-01-23 New Jersey 34 657536 20934
## 17977 2021-01-23 New Mexico 35 168579 3117
## 17978 2021-01-23 New York 36 1323569 41694
## 17979 2021-01-23 North Carolina 37 713300 8623
## 17980 2021-01-23 North Dakota 38 96745 1436
## 17981 2021-01-23 Northern Mariana Islands 69 129 2
## 17982 2021-01-23 Ohio 39 859841 10680
## 17983 2021-01-23 Oklahoma 40 370149 3231
## 17984 2021-01-23 Oregon 41 137600 1882
## 17985 2021-01-23 Pennsylvania 42 805272 20526
## 17986 2021-01-23 Puerto Rico 72 123688 1771
## 17987 2021-01-23 Rhode Island 44 109735 2083
## 17988 2021-01-23 South Carolina 45 413789 6479
## 17989 2021-01-23 South Dakota 46 106963 1696
## 17990 2021-01-23 Tennessee 47 692048 8736
## 17991 2021-01-23 Texas 48 2240136 34859
## 17992 2021-01-23 Utah 49 334889 1582
## 17993 2021-01-23 Vermont 50 10908 170
## 17994 2021-01-23 Virgin Islands 78 2341 24
## 17995 2021-01-23 Virginia 51 468655 6079
## 17996 2021-01-23 Washington 53 304107 4182
## 17997 2021-01-23 West Virginia 54 114752 1872
## 17998 2021-01-23 Wisconsin 55 580003 6187
## 17999 2021-01-23 Wyoming 56 50583 571
## 18000 2021-01-24 Alabama 1 441170 6660
## 18001 2021-01-24 Alaska 2 52982 250
## 18002 2021-01-24 Arizona 4 722574 12238
## 18003 2021-01-24 Arkansas 5 284066 4606
## 18004 2021-01-24 California 6 3186036 37118
## 18005 2021-01-24 Colorado 8 387960 5588
## 18006 2021-01-24 Connecticut 9 237815 6819
## 18007 2021-01-24 Delaware 10 74575 1041
## 18008 2021-01-24 District of Columbia 11 35301 872
## 18009 2021-01-24 Florida 12 1649441 25292
## 18010 2021-01-24 Georgia 13 842798 12838
## 18011 2021-01-24 Guam 66 8516 129
## 18012 2021-01-24 Hawaii 15 25093 339
## 18013 2021-01-24 Idaho 16 159581 1671
## 18014 2021-01-24 Illinois 17 1104206 20680
## 18015 2021-01-24 Indiana 18 614120 9716
## 18016 2021-01-24 Iowa 19 313140 4487
## 18017 2021-01-24 Kansas 20 269611 3598
## 18018 2021-01-24 Kentucky 21 349194 3687
## 18019 2021-01-24 Louisiana 22 383862 8565
## 18020 2021-01-24 Maine 23 36598 544
## 18021 2021-01-24 Maryland 24 341666 6865
## 18022 2021-01-24 Massachusetts 25 500037 14133
## 18023 2021-01-24 Michigan 26 594700 15170
## 18024 2021-01-24 Minnesota 27 455057 6163
## 18025 2021-01-24 Mississippi 28 264219 5772
## 18026 2021-01-24 Missouri 29 487640 6956
## 18027 2021-01-24 Montana 30 91662 1152
## 18028 2021-01-24 Nebraska 31 188241 1966
## 18029 2021-01-24 Nevada 32 271029 4027
## 18030 2021-01-24 New Hampshire 33 62337 987
## 18031 2021-01-24 New Jersey 34 662808 20951
## 18032 2021-01-24 New Mexico 35 169205 3147
## 18033 2021-01-24 New York 36 1335952 41889
## 18034 2021-01-24 North Carolina 37 718955 8739
## 18035 2021-01-24 North Dakota 38 96842 1436
## 18036 2021-01-24 Northern Mariana Islands 69 129 2
## 18037 2021-01-24 Ohio 39 864322 10711
## 18038 2021-01-24 Oklahoma 40 373090 3279
## 18039 2021-01-24 Oregon 41 138168 1885
## 18040 2021-01-24 Pennsylvania 42 808951 20609
## 18041 2021-01-24 Puerto Rico 72 124643 1773
## 18042 2021-01-24 Rhode Island 44 109735 2083
## 18043 2021-01-24 South Carolina 45 418325 6547
## 18044 2021-01-24 South Dakota 46 107148 1705
## 18045 2021-01-24 Tennessee 47 694381 8776
## 18046 2021-01-24 Texas 48 2247849 35050
## 18047 2021-01-24 Utah 49 336405 1595
## 18048 2021-01-24 Vermont 50 11033 170
## 18049 2021-01-24 Virgin Islands 78 2341 24
## 18050 2021-01-24 Virginia 51 472447 6078
## 18051 2021-01-24 Washington 53 304523 4182
## 18052 2021-01-24 West Virginia 54 115307 1895
## 18053 2021-01-24 Wisconsin 55 581377 6193
## 18054 2021-01-24 Wyoming 56 50898 571
## 18055 2021-01-25 Alabama 1 443009 6662
## 18056 2021-01-25 Alaska 2 53061 250
## 18057 2021-01-25 Arizona 4 728231 12239
## 18058 2021-01-25 Arkansas 5 284702 4650
## 18059 2021-01-25 California 6 3212939 37499
## 18060 2021-01-25 Colorado 8 389227 5602
## 18061 2021-01-25 Connecticut 9 243632 6911
## 18062 2021-01-25 Delaware 10 75191 1049
## 18063 2021-01-25 District of Columbia 11 35505 879
## 18064 2021-01-25 Florida 12 1658161 25445
## 18065 2021-01-25 Georgia 13 847036 12890
## 18066 2021-01-25 Guam 66 8523 130
## 18067 2021-01-25 Hawaii 15 25209 339
## 18068 2021-01-25 Idaho 16 160182 1687
## 18069 2021-01-25 Illinois 17 1107388 20744
## 18070 2021-01-25 Indiana 18 616310 9728
## 18071 2021-01-25 Iowa 19 313907 4488
## 18072 2021-01-25 Kansas 20 272220 3622
## 18073 2021-01-25 Kentucky 21 351462 3730
## 18074 2021-01-25 Louisiana 22 385942 8590
## 18075 2021-01-25 Maine 23 37046 547
## 18076 2021-01-25 Maryland 24 343353 6900
## 18077 2021-01-25 Massachusetts 25 503688 14178
## 18078 2021-01-25 Michigan 26 597781 15208
## 18079 2021-01-25 Minnesota 27 455851 6166
## 18080 2021-01-25 Mississippi 28 265146 5777
## 18081 2021-01-25 Missouri 29 489865 6968
## 18082 2021-01-25 Montana 30 91905 1152
## 18083 2021-01-25 Nebraska 31 188850 1984
## 18084 2021-01-25 Nevada 32 272006 4032
## 18085 2021-01-25 New Hampshire 33 62768 990
## 18086 2021-01-25 New Jersey 34 666951 20972
## 18087 2021-01-25 New Mexico 35 169696 3159
## 18088 2021-01-25 New York 36 1347924 42090
## 18089 2021-01-25 North Carolina 37 724154 8777
## 18090 2021-01-25 North Dakota 38 96899 1436
## 18091 2021-01-25 Northern Mariana Islands 69 129 2
## 18092 2021-01-25 Ohio 39 868656 10768
## 18093 2021-01-25 Oklahoma 40 374853 3293
## 18094 2021-01-25 Oregon 41 138587 1892
## 18095 2021-01-25 Pennsylvania 42 813665 20664
## 18096 2021-01-25 Puerto Rico 72 125211 1778
## 18097 2021-01-25 Rhode Island 44 111754 2110
## 18098 2021-01-25 South Carolina 45 421417 6552
## 18099 2021-01-25 South Dakota 46 107180 1705
## 18100 2021-01-25 Tennessee 47 695935 8887
## 18101 2021-01-25 Texas 48 2268260 35236
## 18102 2021-01-25 Utah 49 337269 1599
## 18103 2021-01-25 Vermont 50 11165 171
## 18104 2021-01-25 Virgin Islands 78 2350 24
## 18105 2021-01-25 Virginia 51 478619 6081
## 18106 2021-01-25 Washington 53 306489 4221
## 18107 2021-01-25 West Virginia 54 115839 1899
## 18108 2021-01-25 Wisconsin 55 582477 6203
## 18109 2021-01-25 Wyoming 56 51062 571
## 18110 2021-01-26 Alabama 1 445909 6896
## 18111 2021-01-26 Alaska 2 53143 251
## 18112 2021-01-26 Arizona 4 734613 12489
## 18113 2021-01-26 Arkansas 5 287187 4690
## 18114 2021-01-26 California 6 3234571 38222
## 18115 2021-01-26 Colorado 8 390662 5617
## 18116 2021-01-26 Connecticut 9 244899 6934
## 18117 2021-01-26 Delaware 10 75490 1065
## 18118 2021-01-26 District of Columbia 11 35700 888
## 18119 2021-01-26 Florida 12 1667755 25672
## 18120 2021-01-26 Georgia 13 855488 13065
## 18121 2021-01-26 Guam 66 8535 130
## 18122 2021-01-26 Hawaii 15 25272 398
## 18123 2021-01-26 Idaho 16 160727 1691
## 18124 2021-01-26 Illinois 17 1111028 20853
## 18125 2021-01-26 Indiana 18 618037 9807
## 18126 2021-01-26 Iowa 19 315002 4492
## 18127 2021-01-26 Kansas 20 272303 3625
## 18128 2021-01-26 Kentucky 21 354191 3769
## 18129 2021-01-26 Louisiana 22 388562 8621
## 18130 2021-01-26 Maine 23 37708 558
## 18131 2021-01-26 Maryland 24 344839 6963
## 18132 2021-01-26 Massachusetts 25 506183 14220
## 18133 2021-01-26 Michigan 26 600175 15294
## 18134 2021-01-26 Minnesota 27 456558 6174
## 18135 2021-01-26 Mississippi 28 266598 5852
## 18136 2021-01-26 Missouri 29 491544 7082
## 18137 2021-01-26 Montana 30 92249 1186
## 18138 2021-01-26 Nebraska 31 189151 1997
## 18139 2021-01-26 Nevada 32 272942 4092
## 18140 2021-01-26 New Hampshire 33 63172 994
## 18141 2021-01-26 New Jersey 34 671727 21105
## 18142 2021-01-26 New Mexico 35 170296 3173
## 18143 2021-01-26 New York 36 1358964 42273
## 18144 2021-01-26 North Carolina 37 728645 8839
## 18145 2021-01-26 North Dakota 38 97031 1440
## 18146 2021-01-26 Northern Mariana Islands 69 131 2
## 18147 2021-01-26 Ohio 39 872918 10856
## 18148 2021-01-26 Oklahoma 40 376424 3323
## 18149 2021-01-26 Oregon 41 139355 1909
## 18150 2021-01-26 Pennsylvania 42 818330 20883
## 18151 2021-01-26 Puerto Rico 72 125684 1783
## 18152 2021-01-26 Rhode Island 44 112396 2126
## 18153 2021-01-26 South Carolina 45 423667 6578
## 18154 2021-01-26 South Dakota 46 107380 1705
## 18155 2021-01-26 Tennessee 47 699570 9078
## 18156 2021-01-26 Texas 48 2288854 35544
## 18157 2021-01-26 Utah 49 338675 1614
## 18158 2021-01-26 Vermont 50 11285 171
## 18159 2021-01-26 Virgin Islands 78 2373 24
## 18160 2021-01-26 Virginia 51 483326 6174
## 18161 2021-01-26 Washington 53 307880 4245
## 18162 2021-01-26 West Virginia 54 116978 1928
## 18163 2021-01-26 Wisconsin 55 584041 6268
## 18164 2021-01-26 Wyoming 56 51152 596
## 18165 2021-01-27 Alabama 1 449086 7172
## 18166 2021-01-27 Alaska 2 53322 252
## 18167 2021-01-27 Arizona 4 740599 12668
## 18168 2021-01-27 Arkansas 5 288964 4742
## 18169 2021-01-27 California 6 3253201 38927
## 18170 2021-01-27 Colorado 8 392448 5648
## 18171 2021-01-27 Connecticut 9 247339 6976
## 18172 2021-01-27 Delaware 10 75832 1072
## 18173 2021-01-27 District of Columbia 11 35865 895
## 18174 2021-01-27 Florida 12 1676163 25832
## 18175 2021-01-27 Georgia 13 861830 13222
## 18176 2021-01-27 Guam 66 8537 130
## 18177 2021-01-27 Hawaii 15 25366 401
## 18178 2021-01-27 Idaho 16 161369 1716
## 18179 2021-01-27 Illinois 17 1114798 20950
## 18180 2021-01-27 Indiana 18 620275 9845
## 18181 2021-01-27 Iowa 19 316114 4500
## 18182 2021-01-27 Kansas 20 275468 3718
## 18183 2021-01-27 Kentucky 21 356837 3805
## 18184 2021-01-27 Louisiana 22 392416 8688
## 18185 2021-01-27 Maine 23 38170 562
## 18186 2021-01-27 Maryland 24 346734 6996
## 18187 2021-01-27 Massachusetts 25 509503 14304
## 18188 2021-01-27 Michigan 26 602207 15303
## 18189 2021-01-27 Minnesota 27 457385 6192
## 18190 2021-01-27 Mississippi 28 268672 5917
## 18191 2021-01-27 Missouri 29 493392 7118
## 18192 2021-01-27 Montana 30 92619 1202
## 18193 2021-01-27 Nebraska 31 189847 2010
## 18194 2021-01-27 Nevada 32 274039 4139
## 18195 2021-01-27 New Hampshire 33 63563 1006
## 18196 2021-01-27 New Jersey 34 676537 21234
## 18197 2021-01-27 New Mexico 35 171047 3200
## 18198 2021-01-27 New York 36 1369329 42434
## 18199 2021-01-27 North Carolina 37 733543 8959
## 18200 2021-01-27 North Dakota 38 97185 1441
## 18201 2021-01-27 Northern Mariana Islands 69 131 2
## 18202 2021-01-27 Ohio 39 878284 10931
## 18203 2021-01-27 Oklahoma 40 379110 3388
## 18204 2021-01-27 Oregon 41 140063 1936
## 18205 2021-01-27 Pennsylvania 42 824216 21105
## 18206 2021-01-27 Puerto Rico 72 125859 1794
## 18207 2021-01-27 Rhode Island 44 113009 2135
## 18208 2021-01-27 South Carolina 45 427231 6673
## 18209 2021-01-27 South Dakota 46 107608 1739
## 18210 2021-01-27 Tennessee 47 701997 9230
## 18211 2021-01-27 Texas 48 2308600 36024
## 18212 2021-01-27 Utah 49 340684 1620
## 18213 2021-01-27 Vermont 50 11379 172
## 18214 2021-01-27 Virgin Islands 78 2373 24
## 18215 2021-01-27 Virginia 51 488553 6228
## 18216 2021-01-27 Washington 53 309604 4294
## 18217 2021-01-27 West Virginia 54 117775 1953
## 18218 2021-01-27 Wisconsin 55 585600 6306
## 18219 2021-01-27 Wyoming 56 51368 596
## 18220 2021-01-28 Alabama 1 452734 7340
## 18221 2021-01-28 Alaska 2 53524 253
## 18222 2021-01-28 Arizona 4 745976 12861
## 18223 2021-01-28 Arkansas 5 290856 4784
## 18224 2021-01-28 California 6 3272829 39527
## 18225 2021-01-28 Colorado 8 394668 5670
## 18226 2021-01-28 Connecticut 9 248765 7020
## 18227 2021-01-28 Delaware 10 76495 1075
## 18228 2021-01-28 District of Columbia 11 36132 902
## 18229 2021-01-28 Florida 12 1687586 26034
## 18230 2021-01-28 Georgia 13 869165 13404
## 18231 2021-01-28 Guam 66 8541 130
## 18232 2021-01-28 Hawaii 15 25460 403
## 18233 2021-01-28 Idaho 16 161863 1724
## 18234 2021-01-28 Illinois 17 1119004 21074
## 18235 2021-01-28 Indiana 18 623094 9879
## 18236 2021-01-28 Iowa 19 317124 4532
## 18237 2021-01-28 Kansas 20 275585 3718
## 18238 2021-01-28 Kentucky 21 359978 3863
## 18239 2021-01-28 Louisiana 22 394909 8743
## 18240 2021-01-28 Maine 23 38454 567
## 18241 2021-01-28 Maryland 24 348925 7037
## 18242 2021-01-28 Massachusetts 25 514134 14348
## 18243 2021-01-28 Michigan 26 604458 15393
## 18244 2021-01-28 Minnesota 27 458701 6208
## 18245 2021-01-28 Mississippi 28 270476 5945
## 18246 2021-01-28 Missouri 29 495619 7141
## 18247 2021-01-28 Montana 30 93018 1213
## 18248 2021-01-28 Nebraska 31 190585 2013
## 18249 2021-01-28 Nevada 32 275125 4188
## 18250 2021-01-28 New Hampshire 33 64258 1022
## 18251 2021-01-28 New Jersey 34 681283 21301
## 18252 2021-01-28 New Mexico 35 171719 3228
## 18253 2021-01-28 New York 36 1383112 42639
## 18254 2021-01-28 North Carolina 37 740303 9099
## 18255 2021-01-28 North Dakota 38 97330 1442
## 18256 2021-01-28 Northern Mariana Islands 69 131 2
## 18257 2021-01-28 Ohio 39 883716 11006
## 18258 2021-01-28 Oklahoma 40 381430 3423
## 18259 2021-01-28 Oregon 41 140783 1946
## 18260 2021-01-28 Pennsylvania 42 830295 21350
## 18261 2021-01-28 Puerto Rico 72 126156 1801
## 18262 2021-01-28 Rhode Island 44 113754 2144
## 18263 2021-01-28 South Carolina 45 431169 6903
## 18264 2021-01-28 South Dakota 46 107795 1763
## 18265 2021-01-28 Tennessee 47 704464 9332
## 18266 2021-01-28 Texas 48 2328099 36434
## 18267 2021-01-28 Utah 49 342445 1620
## 18268 2021-01-28 Vermont 50 11523 172
## 18269 2021-01-28 Virgin Islands 78 2384 24
## 18270 2021-01-28 Virginia 51 493674 6308
## 18271 2021-01-28 Washington 53 312042 4328
## 18272 2021-01-28 West Virginia 54 118562 1983
## 18273 2021-01-28 Wisconsin 55 587580 6339
## 18274 2021-01-28 Wyoming 56 51430 596
## 18275 2021-01-29 Alabama 1 455582 7566
## 18276 2021-01-29 Alaska 2 53705 253
## 18277 2021-01-29 Arizona 4 750787 13047
## 18278 2021-01-29 Arkansas 5 292563 4831
## 18279 2021-01-29 California 6 3292572 40192
## 18280 2021-01-29 Colorado 8 395772 5694
## 18281 2021-01-29 Connecticut 9 250023 7046
## 18282 2021-01-29 Delaware 10 76935 1078
## 18283 2021-01-29 District of Columbia 11 36414 907
## 18284 2021-01-29 Florida 12 1698562 26253
## 18285 2021-01-29 Georgia 13 875514 13557
## 18286 2021-01-29 Guam 66 8548 130
## 18287 2021-01-29 Hawaii 15 25599 404
## 18288 2021-01-29 Idaho 16 162482 1727
## 18289 2021-01-29 Illinois 17 1123152 21147
## 18290 2021-01-29 Indiana 18 625730 9925
## 18291 2021-01-29 Iowa 19 317689 4577
## 18292 2021-01-29 Kansas 20 277623 3779
## 18293 2021-01-29 Kentucky 21 362123 3910
## 18294 2021-01-29 Louisiana 22 397276 8801
## 18295 2021-01-29 Maine 23 38813 570
## 18296 2021-01-29 Maryland 24 350805 7076
## 18297 2021-01-29 Massachusetts 25 517252 14444
## 18298 2021-01-29 Michigan 26 606480 15401
## 18299 2021-01-29 Minnesota 27 459815 6236
## 18300 2021-01-29 Mississippi 28 272662 5983
## 18301 2021-01-29 Missouri 29 497838 7162
## 18302 2021-01-29 Montana 30 93322 1228
## 18303 2021-01-29 Nebraska 31 190709 2020
## 18304 2021-01-29 Nevada 32 276507 4225
## 18305 2021-01-29 New Hampshire 33 64838 1036
## 18306 2021-01-29 New Jersey 34 687269 21383
## 18307 2021-01-29 New Mexico 35 172798 3250
## 18308 2021-01-29 New York 36 1396063 42825
## 18309 2021-01-29 North Carolina 37 747322 9213
## 18310 2021-01-29 North Dakota 38 97483 1444
## 18311 2021-01-29 Northern Mariana Islands 69 131 2
## 18312 2021-01-29 Ohio 39 888591 11073
## 18313 2021-01-29 Oklahoma 40 384217 3471
## 18314 2021-01-29 Oregon 41 141729 1956
## 18315 2021-01-29 Pennsylvania 42 839888 21524
## 18316 2021-01-29 Puerto Rico 72 126583 1812
## 18317 2021-01-29 Rhode Island 44 114438 2154
## 18318 2021-01-29 South Carolina 45 435633 6942
## 18319 2021-01-29 South Dakota 46 107955 1768
## 18320 2021-01-29 Tennessee 47 708721 9374
## 18321 2021-01-29 Texas 48 2346818 36804
## 18322 2021-01-29 Utah 49 343962 1656
## 18323 2021-01-29 Vermont 50 11658 172
## 18324 2021-01-29 Virgin Islands 78 2398 24
## 18325 2021-01-29 Virginia 51 497912 6379
## 18326 2021-01-29 Washington 53 314033 4368
## 18327 2021-01-29 West Virginia 54 119467 2006
## 18328 2021-01-29 Wisconsin 55 589384 6393
## 18329 2021-01-29 Wyoming 56 51690 596
## 18330 2021-01-30 Alabama 1 455582 7566
## 18331 2021-01-30 Alaska 2 53851 253
## 18332 2021-01-30 Arizona 4 756027 13111
## 18333 2021-01-30 Arkansas 5 294387 4838
## 18334 2021-01-30 California 6 3310100 40694
## 18335 2021-01-30 Colorado 8 396120 5696
## 18336 2021-01-30 Connecticut 9 250023 7046
## 18337 2021-01-30 Delaware 10 77551 1081
## 18338 2021-01-30 District of Columbia 11 36662 909
## 18339 2021-01-30 Florida 12 1713581 26359
## 18340 2021-01-30 Georgia 13 881740 13776
## 18341 2021-01-30 Guam 66 8555 130
## 18342 2021-01-30 Hawaii 15 25708 404
## 18343 2021-01-30 Idaho 16 162762 1727
## 18344 2021-01-30 Illinois 17 1126448 21213
## 18345 2021-01-30 Indiana 18 628069 9967
## 18346 2021-01-30 Iowa 19 319110 4651
## 18347 2021-01-30 Kansas 20 277623 3779
## 18348 2021-01-30 Kentucky 21 365016 3967
## 18349 2021-01-30 Louisiana 22 397276 8801
## 18350 2021-01-30 Maine 23 39168 590
## 18351 2021-01-30 Maryland 24 352902 7107
## 18352 2021-01-30 Massachusetts 25 521360 14531
## 18353 2021-01-30 Michigan 26 607833 15516
## 18354 2021-01-30 Minnesota 27 460887 6255
## 18355 2021-01-30 Mississippi 28 274190 6018
## 18356 2021-01-30 Missouri 29 498808 7175
## 18357 2021-01-30 Montana 30 93793 1233
## 18358 2021-01-30 Nebraska 31 191569 2025
## 18359 2021-01-30 Nevada 32 277547 4268
## 18360 2021-01-30 New Hampshire 33 65362 1042
## 18361 2021-01-30 New Jersey 34 692543 21455
## 18362 2021-01-30 New Mexico 35 173539 3267
## 18363 2021-01-30 New York 36 1408955 42996
## 18364 2021-01-30 North Carolina 37 747948 9215
## 18365 2021-01-30 North Dakota 38 97587 1447
## 18366 2021-01-30 Northern Mariana Islands 69 131 2
## 18367 2021-01-30 Ohio 39 892781 11124
## 18368 2021-01-30 Oklahoma 40 386590 3504
## 18369 2021-01-30 Oregon 41 142417 1972
## 18370 2021-01-30 Pennsylvania 42 844519 21658
## 18371 2021-01-30 Puerto Rico 72 127021 1823
## 18372 2021-01-30 Rhode Island 44 114438 2154
## 18373 2021-01-30 South Carolina 45 439785 7014
## 18374 2021-01-30 South Dakota 46 108070 1775
## 18375 2021-01-30 Tennessee 47 710748 9483
## 18376 2021-01-30 Texas 48 2360584 37096
## 18377 2021-01-30 Utah 49 345430 1664
## 18378 2021-01-30 Vermont 50 11831 173
## 18379 2021-01-30 Virgin Islands 78 2398 24
## 18380 2021-01-30 Virginia 51 502221 6449
## 18381 2021-01-30 Washington 53 315448 4368
## 18382 2021-01-30 West Virginia 54 120340 2015
## 18383 2021-01-30 Wisconsin 55 590997 6433
## 18384 2021-01-30 Wyoming 56 51704 596
## 18385 2021-01-31 Alabama 1 459639 7688
## 18386 2021-01-31 Alaska 2 53985 253
## 18387 2021-01-31 Arizona 4 758576 13120
## 18388 2021-01-31 Arkansas 5 295268 4868
## 18389 2021-01-31 California 6 3324064 40928
## 18390 2021-01-31 Colorado 8 397138 5711
## 18391 2021-01-31 Connecticut 9 250023 7046
## 18392 2021-01-31 Delaware 10 78071 1090
## 18393 2021-01-31 District of Columbia 11 36872 913
## 18394 2021-01-31 Florida 12 1721369 26478
## 18395 2021-01-31 Georgia 13 885249 13778
## 18396 2021-01-31 Guam 66 8556 130
## 18397 2021-01-31 Hawaii 15 25786 407
## 18398 2021-01-31 Idaho 16 162762 1727
## 18399 2021-01-31 Illinois 17 1128750 21242
## 18400 2021-01-31 Indiana 18 629793 9974
## 18401 2021-01-31 Iowa 19 319408 4901
## 18402 2021-01-31 Kansas 20 277633 3779
## 18403 2021-01-31 Kentucky 21 366857 3977
## 18404 2021-01-31 Louisiana 22 400626 8859
## 18405 2021-01-31 Maine 23 39324 590
## 18406 2021-01-31 Maryland 24 354649 7127
## 18407 2021-01-31 Massachusetts 25 524025 14577
## 18408 2021-01-31 Michigan 26 607901 15516
## 18409 2021-01-31 Minnesota 27 461875 6268
## 18410 2021-01-31 Mississippi 28 275001 6045
## 18411 2021-01-31 Missouri 29 499530 7176
## 18412 2021-01-31 Montana 30 93961 1234
## 18413 2021-01-31 Nebraska 31 191763 2025
## 18414 2021-01-31 Nevada 32 278447 4271
## 18415 2021-01-31 New Hampshire 33 65695 1057
## 18416 2021-01-31 New Jersey 34 696831 21484
## 18417 2021-01-31 New Mexico 35 174064 3285
## 18418 2021-01-31 New York 36 1420164 43178
## 18419 2021-01-31 North Carolina 37 758158 9381
## 18420 2021-01-31 North Dakota 38 97655 1447
## 18421 2021-01-31 Northern Mariana Islands 69 131 2
## 18422 2021-01-31 Ohio 39 895792 11178
## 18423 2021-01-31 Oklahoma 40 389472 3547
## 18424 2021-01-31 Oregon 41 142417 1972
## 18425 2021-01-31 Pennsylvania 42 848244 21715
## 18426 2021-01-31 Puerto Rico 72 127239 1829
## 18427 2021-01-31 Rhode Island 44 114438 2154
## 18428 2021-01-31 South Carolina 45 443386 7042
## 18429 2021-01-31 South Dakota 46 108250 1778
## 18430 2021-01-31 Tennessee 47 713290 9557
## 18431 2021-01-31 Texas 48 2372960 37242
## 18432 2021-01-31 Utah 49 346624 1665
## 18433 2021-01-31 Vermont 50 11965 174
## 18434 2021-01-31 Virgin Islands 78 2398 24
## 18435 2021-01-31 Virginia 51 504779 6464
## 18436 2021-01-31 Washington 53 315769 4369
## 18437 2021-01-31 West Virginia 54 121001 2024
## 18438 2021-01-31 Wisconsin 55 592140 6437
## 18439 2021-01-31 Wyoming 56 51912 596
## 18440 2021-02-01 Alabama 1 460860 7688
## 18441 2021-02-01 Alaska 2 54091 253
## 18442 2021-02-01 Arizona 4 762458 13124
## 18443 2021-02-01 Arkansas 5 296494 4895
## 18444 2021-02-01 California 6 3341656 41284
## 18445 2021-02-01 Colorado 8 399384 5737
## 18446 2021-02-01 Connecticut 9 253954 7119
## 18447 2021-02-01 Delaware 10 78495 1101
## 18448 2021-02-01 District of Columbia 11 37008 916
## 18449 2021-02-01 Florida 12 1727099 26684
## 18450 2021-02-01 Georgia 13 888462 13821
## 18451 2021-02-01 Guam 66 8577 130
## 18452 2021-02-01 Hawaii 15 25870 407
## 18453 2021-02-01 Idaho 16 163291 1737
## 18454 2021-02-01 Illinois 17 1131212 21273
## 18455 2021-02-01 Indiana 18 631502 9989
## 18456 2021-02-01 Iowa 19 320187 4906
## 18457 2021-02-01 Kansas 20 279587 3809
## 18458 2021-02-01 Kentucky 21 368623 3995
## 18459 2021-02-01 Louisiana 22 401591 8912
## 18460 2021-02-01 Maine 23 39543 595
## 18461 2021-02-01 Maryland 24 355812 7154
## 18462 2021-02-01 Massachusetts 25 526423 14607
## 18463 2021-02-01 Michigan 26 610524 15527
## 18464 2021-02-01 Minnesota 27 462596 6270
## 18465 2021-02-01 Mississippi 28 275706 6056
## 18466 2021-02-01 Missouri 29 501226 7182
## 18467 2021-02-01 Montana 30 94146 1235
## 18468 2021-02-01 Nebraska 31 192112 2031
## 18469 2021-02-01 Nevada 32 279228 4281
## 18470 2021-02-01 New Hampshire 33 66058 1059
## 18471 2021-02-01 New Jersey 34 700346 21513
## 18472 2021-02-01 New Mexico 35 174550 3297
## 18473 2021-02-01 New York 36 1429096 43354
## 18474 2021-02-01 North Carolina 37 763358 9397
## 18475 2021-02-01 North Dakota 38 97708 1447
## 18476 2021-02-01 Northern Mariana Islands 69 131 2
## 18477 2021-02-01 Ohio 39 899079 11233
## 18478 2021-02-01 Oklahoma 40 390868 3564
## 18479 2021-02-01 Oregon 41 143373 1980
## 18480 2021-02-01 Pennsylvania 42 851911 21741
## 18481 2021-02-01 Puerto Rico 72 127853 1836
## 18482 2021-02-01 Rhode Island 44 115956 2173
## 18483 2021-02-01 South Carolina 45 445916 7283
## 18484 2021-02-01 South Dakota 46 108315 1778
## 18485 2021-02-01 Tennessee 47 715439 9660
## 18486 2021-02-01 Texas 48 2412150 37405
## 18487 2021-02-01 Utah 49 347210 1669
## 18488 2021-02-01 Vermont 50 12083 175
## 18489 2021-02-01 Virgin Islands 78 2421 24
## 18490 2021-02-01 Virginia 51 507640 6474
## 18491 2021-02-01 Washington 53 317703 4404
## 18492 2021-02-01 West Virginia 54 121425 2028
## 18493 2021-02-01 Wisconsin 55 592921 6439
## 18494 2021-02-01 Wyoming 56 52057 596
## 18495 2021-02-02 Alabama 1 462938 7894
## 18496 2021-02-02 Alaska 2 54223 269
## 18497 2021-02-02 Arizona 4 766445 13415
## 18498 2021-02-02 Arkansas 5 298004 4939
## 18499 2021-02-02 California 6 3354544 41858
## 18500 2021-02-02 Colorado 8 400383 5747
## 18501 2021-02-02 Connecticut 9 256522 7133
## 18502 2021-02-02 Delaware 10 78696 1108
## 18503 2021-02-02 District of Columbia 11 37138 921
## 18504 2021-02-02 Florida 12 1737632 26821
## 18505 2021-02-02 Georgia 13 893441 14024
## 18506 2021-02-02 Guam 66 8579 130
## 18507 2021-02-02 Hawaii 15 25932 407
## 18508 2021-02-02 Idaho 16 163781 1743
## 18509 2021-02-02 Illinois 17 1133691 21336
## 18510 2021-02-02 Indiana 18 633043 10054
## 18511 2021-02-02 Iowa 19 321274 4919
## 18512 2021-02-02 Kansas 20 279734 3809
## 18513 2021-02-02 Kentucky 21 370943 4028
## 18514 2021-02-02 Louisiana 22 404194 8953
## 18515 2021-02-02 Maine 23 39960 618
## 18516 2021-02-02 Maryland 24 356717 7188
## 18517 2021-02-02 Massachusetts 25 528662 14652
## 18518 2021-02-02 Michigan 26 611976 15599
## 18519 2021-02-02 Minnesota 27 463200 6278
## 18520 2021-02-02 Mississippi 28 276531 6132
## 18521 2021-02-02 Missouri 29 502819 7410
## 18522 2021-02-02 Montana 30 94460 1250
## 18523 2021-02-02 Nebraska 31 192553 2036
## 18524 2021-02-02 Nevada 32 280025 4328
## 18525 2021-02-02 New Hampshire 33 66384 1066
## 18526 2021-02-02 New Jersey 34 703496 21584
## 18527 2021-02-02 New Mexico 35 174982 3312
## 18528 2021-02-02 New York 36 1437045 43524
## 18529 2021-02-02 North Carolina 37 766378 9477
## 18530 2021-02-02 North Dakota 38 97823 1447
## 18531 2021-02-02 Northern Mariana Islands 69 133 2
## 18532 2021-02-02 Ohio 39 902736 11339
## 18533 2021-02-02 Oklahoma 40 392164 3602
## 18534 2021-02-02 Oregon 41 143978 2001
## 18535 2021-02-02 Pennsylvania 42 856214 21866
## 18536 2021-02-02 Puerto Rico 72 128141 1846
## 18537 2021-02-02 Rhode Island 44 116191 2186
## 18538 2021-02-02 South Carolina 45 447904 7318
## 18539 2021-02-02 South Dakota 46 108431 1779
## 18540 2021-02-02 Tennessee 47 717472 9806
## 18541 2021-02-02 Texas 48 2430370 37760
## 18542 2021-02-02 Utah 49 348409 1687
## 18543 2021-02-02 Vermont 50 12196 176
## 18544 2021-02-02 Virgin Islands 78 2426 24
## 18545 2021-02-02 Virginia 51 510380 6517
## 18546 2021-02-02 Washington 53 318967 4402
## 18547 2021-02-02 West Virginia 54 121935 2031
## 18548 2021-02-02 Wisconsin 55 594217 6485
## 18549 2021-02-02 Wyoming 56 52128 624
## 18550 2021-02-03 Alabama 1 465056 8203
## 18551 2021-02-03 Alaska 2 54447 269
## 18552 2021-02-03 Arizona 4 769297 13593
## 18553 2021-02-03 Arkansas 5 300430 4985
## 18554 2021-02-03 California 6 3367104 42434
## 18555 2021-02-03 Colorado 8 401751 5759
## 18556 2021-02-03 Connecticut 9 257004 7157
## 18557 2021-02-03 Delaware 10 78982 1130
## 18558 2021-02-03 District of Columbia 11 37199 926
## 18559 2021-02-03 Florida 12 1744611 27018
## 18560 2021-02-03 Georgia 13 898639 14153
## 18561 2021-02-03 Guam 66 8587 130
## 18562 2021-02-03 Hawaii 15 26000 411
## 18563 2021-02-03 Idaho 16 164257 1750
## 18564 2021-02-03 Illinois 17 1137037 21420
## 18565 2021-02-03 Indiana 18 634470 10091
## 18566 2021-02-03 Iowa 19 322308 4975
## 18567 2021-02-03 Kansas 20 281866 3895
## 18568 2021-02-03 Kentucky 21 372774 4067
## 18569 2021-02-03 Louisiana 22 406235 9006
## 18570 2021-02-03 Maine 23 40233 627
## 18571 2021-02-03 Maryland 24 357660 7220
## 18572 2021-02-03 Massachusetts 25 531117 14708
## 18573 2021-02-03 Michigan 26 613637 15633
## 18574 2021-02-03 Minnesota 27 463834 6302
## 18575 2021-02-03 Mississippi 28 277322 6158
## 18576 2021-02-03 Missouri 29 504315 7491
## 18577 2021-02-03 Montana 30 94890 1304
## 18578 2021-02-03 Nebraska 31 193128 2042
## 18579 2021-02-03 Nevada 32 280835 4376
## 18580 2021-02-03 New Hampshire 33 66721 1076
## 18581 2021-02-03 New Jersey 34 705807 21693
## 18582 2021-02-03 New Mexico 35 175652 3340
## 18583 2021-02-03 New York 36 1444199 43687
## 18584 2021-02-03 North Carolina 37 777071 9625
## 18585 2021-02-03 North Dakota 38 97961 1447
## 18586 2021-02-03 Northern Mariana Islands 69 133 2
## 18587 2021-02-03 Ohio 39 906727 11431
## 18588 2021-02-03 Oklahoma 40 394283 3654
## 18589 2021-02-03 Oregon 41 144605 2011
## 18590 2021-02-03 Pennsylvania 42 859345 22010
## 18591 2021-02-03 Puerto Rico 72 128277 1853
## 18592 2021-02-03 Rhode Island 44 116704 2198
## 18593 2021-02-03 South Carolina 45 450794 7394
## 18594 2021-02-03 South Dakota 46 108639 1782
## 18595 2021-02-03 Tennessee 47 719332 9939
## 18596 2021-02-03 Texas 48 2448334 38203
## 18597 2021-02-03 Utah 49 350000 1699
## 18598 2021-02-03 Vermont 50 12329 179
## 18599 2021-02-03 Virgin Islands 78 2430 24
## 18600 2021-02-03 Virginia 51 513339 6575
## 18601 2021-02-03 Washington 53 320502 4466
## 18602 2021-02-03 West Virginia 54 122470 2058
## 18603 2021-02-03 Wisconsin 55 595756 6500
## 18604 2021-02-03 Wyoming 56 52288 624
## 18605 2021-02-04 Alabama 1 467823 8365
## 18606 2021-02-04 Alaska 2 54631 269
## 18607 2021-02-04 Arizona 4 773636 13792
## 18608 2021-02-04 Arkansas 5 302899 5009
## 18609 2021-02-04 California 6 3381785 43062
## 18610 2021-02-04 Colorado 8 403412 5774
## 18611 2021-02-04 Connecticut 9 257941 7185
## 18612 2021-02-04 Delaware 10 79225 1135
## 18613 2021-02-04 District of Columbia 11 37365 932
## 18614 2021-02-04 Florida 12 1752322 27246
## 18615 2021-02-04 Georgia 13 904450 14315
## 18616 2021-02-04 Guam 66 8591 130
## 18617 2021-02-04 Hawaii 15 26101 413
## 18618 2021-02-04 Idaho 16 164696 1749
## 18619 2021-02-04 Illinois 17 1140341 21497
## 18620 2021-02-04 Indiana 18 636830 11637
## 18621 2021-02-04 Iowa 19 323216 5033
## 18622 2021-02-04 Kansas 20 281951 3895
## 18623 2021-02-04 Kentucky 21 375851 4117
## 18624 2021-02-04 Louisiana 22 408995 9044
## 18625 2021-02-04 Maine 23 40534 630
## 18626 2021-02-04 Maryland 24 359214 7251
## 18627 2021-02-04 Massachusetts 25 533921 14784
## 18628 2021-02-04 Michigan 26 616705 15714
## 18629 2021-02-04 Minnesota 27 465244 6319
## 18630 2021-02-04 Mississippi 28 278532 6182
## 18631 2021-02-04 Missouri 29 505891 7518
## 18632 2021-02-04 Montana 30 95191 1310
## 18633 2021-02-04 Nebraska 31 193612 2067
## 18634 2021-02-04 Nevada 32 281780 4428
## 18635 2021-02-04 New Hampshire 33 67117 1085
## 18636 2021-02-04 New Jersey 34 709096 21793
## 18637 2021-02-04 New Mexico 35 176211 3357
## 18638 2021-02-04 New York 36 1451169 43842
## 18639 2021-02-04 North Carolina 37 783575 9767
## 18640 2021-02-04 North Dakota 38 98059 1447
## 18641 2021-02-04 Northern Mariana Islands 69 133 2
## 18642 2021-02-04 Ohio 39 910847 11510
## 18643 2021-02-04 Oklahoma 40 397065 3681
## 18644 2021-02-04 Oregon 41 145322 2018
## 18645 2021-02-04 Pennsylvania 42 862763 22143
## 18646 2021-02-04 Puerto Rico 72 128599 1861
## 18647 2021-02-04 Rhode Island 44 117291 2209
## 18648 2021-02-04 South Carolina 45 453878 7487
## 18649 2021-02-04 South Dakota 46 108813 1788
## 18650 2021-02-04 Tennessee 47 722288 10107
## 18651 2021-02-04 Texas 48 2461907 38610
## 18652 2021-02-04 Utah 49 351273 1711
## 18653 2021-02-04 Vermont 50 12503 181
## 18654 2021-02-04 Virgin Islands 78 2440 24
## 18655 2021-02-04 Virginia 51 516398 6650
## 18656 2021-02-04 Washington 53 321940 4492
## 18657 2021-02-04 West Virginia 54 123044 2080
## 18658 2021-02-04 Wisconsin 55 597475 6549
## 18659 2021-02-04 Wyoming 56 52468 624
## 18660 2021-02-05 Alabama 1 469319 8449
## 18661 2021-02-05 Alaska 2 54880 269
## 18662 2021-02-05 Arizona 4 777038 13965
## 18663 2021-02-05 Arkansas 5 304723 5050
## 18664 2021-02-05 California 6 3395797 43631
## 18665 2021-02-05 Colorado 8 405200 5804
## 18666 2021-02-05 Connecticut 9 259372 7214
## 18667 2021-02-05 Delaware 10 79546 1191
## 18668 2021-02-05 District of Columbia 11 37634 940
## 18669 2021-02-05 Florida 12 1763865 27456
## 18670 2021-02-05 Georgia 13 909170 14413
## 18671 2021-02-05 Guam 66 8605 130
## 18672 2021-02-05 Hawaii 15 26221 413
## 18673 2021-02-05 Idaho 16 165058 1760
## 18674 2021-02-05 Illinois 17 1143961 21603
## 18675 2021-02-05 Indiana 18 638314 11686
## 18676 2021-02-05 Iowa 19 323797 5067
## 18677 2021-02-05 Kansas 20 284554 4101
## 18678 2021-02-05 Kentucky 21 378276 4149
## 18679 2021-02-05 Louisiana 22 409861 9076
## 18680 2021-02-05 Maine 23 40799 632
## 18681 2021-02-05 Maryland 24 360762 7287
## 18682 2021-02-05 Massachusetts 25 537208 14859
## 18683 2021-02-05 Michigan 26 618398 15739
## 18684 2021-02-05 Minnesota 27 466292 6341
## 18685 2021-02-05 Mississippi 28 279742 6222
## 18686 2021-02-05 Missouri 29 507708 7540
## 18687 2021-02-05 Montana 30 95539 1312
## 18688 2021-02-05 Nebraska 31 194089 2076
## 18689 2021-02-05 Nevada 32 282700 4466
## 18690 2021-02-05 New Hampshire 33 67595 1091
## 18691 2021-02-05 New Jersey 34 713324 21886
## 18692 2021-02-05 New Mexico 35 176793 3380
## 18693 2021-02-05 New York 36 1459066 44012
## 18694 2021-02-05 North Carolina 37 788516 9880
## 18695 2021-02-05 North Dakota 38 98120 1451
## 18696 2021-02-05 Northern Mariana Islands 69 133 2
## 18697 2021-02-05 Ohio 39 914530 11571
## 18698 2021-02-05 Oklahoma 40 399727 3710
## 18699 2021-02-05 Oregon 41 146137 2022
## 18700 2021-02-05 Pennsylvania 42 867502 22273
## 18701 2021-02-05 Puerto Rico 72 128679 1867
## 18702 2021-02-05 Rhode Island 44 117891 2212
## 18703 2021-02-05 South Carolina 45 459974 7553
## 18704 2021-02-05 South Dakota 46 108944 1798
## 18705 2021-02-05 Tennessee 47 724749 10307
## 18706 2021-02-05 Texas 48 2476282 39039
## 18707 2021-02-05 Utah 49 352489 1729
## 18708 2021-02-05 Vermont 50 12612 181
## 18709 2021-02-05 Virgin Islands 78 2449 24
## 18710 2021-02-05 Virginia 51 521467 6732
## 18711 2021-02-05 Washington 53 323334 4526
## 18712 2021-02-05 West Virginia 54 123641 2100
## 18713 2021-02-05 Wisconsin 55 598902 6579
## 18714 2021-02-05 Wyoming 56 52576 624
## 18715 2021-02-06 Alabama 1 471311 8513
## 18716 2021-02-06 Alaska 2 54880 269
## 18717 2021-02-06 Arizona 4 780200 14039
## 18718 2021-02-06 Arkansas 5 306064 5061
## 18719 2021-02-06 California 6 3407369 43987
## 18720 2021-02-06 Colorado 8 406577 5819
## 18721 2021-02-06 Connecticut 9 259372 7214
## 18722 2021-02-06 Delaware 10 79832 1202
## 18723 2021-02-06 District of Columbia 11 37877 947
## 18724 2021-02-06 Florida 12 1771351 27598
## 18725 2021-02-06 Georgia 13 913596 14642
## 18726 2021-02-06 Guam 66 8612 130
## 18727 2021-02-06 Hawaii 15 26325 413
## 18728 2021-02-06 Idaho 16 165259 1769
## 18729 2021-02-06 Illinois 17 1146952 21676
## 18730 2021-02-06 Indiana 18 641133 11752
## 18731 2021-02-06 Iowa 19 324306 5108
## 18732 2021-02-06 Kansas 20 284554 4101
## 18733 2021-02-06 Kentucky 21 380166 4202
## 18734 2021-02-06 Louisiana 22 409861 9076
## 18735 2021-02-06 Maine 23 41064 634
## 18736 2021-02-06 Maryland 24 362263 7329
## 18737 2021-02-06 Massachusetts 25 540827 14921
## 18738 2021-02-06 Michigan 26 619463 15843
## 18739 2021-02-06 Minnesota 27 467285 6357
## 18740 2021-02-06 Mississippi 28 280778 6266
## 18741 2021-02-06 Missouri 29 508465 7557
## 18742 2021-02-06 Montana 30 95753 1313
## 18743 2021-02-06 Nebraska 31 194422 2081
## 18744 2021-02-06 Nevada 32 283459 4498
## 18745 2021-02-06 New Hampshire 33 68061 1098
## 18746 2021-02-06 New Jersey 34 717834 21964
## 18747 2021-02-06 New Mexico 35 177214 3388
## 18748 2021-02-06 New York 36 1470558 44210
## 18749 2021-02-06 North Carolina 37 792618 9962
## 18750 2021-02-06 North Dakota 38 98131 1453
## 18751 2021-02-06 Northern Mariana Islands 69 133 2
## 18752 2021-02-06 Ohio 39 918079 11652
## 18753 2021-02-06 Oklahoma 40 401780 3761
## 18754 2021-02-06 Oregon 41 146741 2032
## 18755 2021-02-06 Pennsylvania 42 871435 22422
## 18756 2021-02-06 Puerto Rico 72 128970 1872
## 18757 2021-02-06 Rhode Island 44 117891 2212
## 18758 2021-02-06 South Carolina 45 462981 7611
## 18759 2021-02-06 South Dakota 46 109132 1804
## 18760 2021-02-06 Tennessee 47 727428 10365
## 18761 2021-02-06 Texas 48 2484782 39330
## 18762 2021-02-06 Utah 49 353700 1733
## 18763 2021-02-06 Vermont 50 12766 182
## 18764 2021-02-06 Virgin Islands 78 2449 24
## 18765 2021-02-06 Virginia 51 526176 6773
## 18766 2021-02-06 Washington 53 323748 4527
## 18767 2021-02-06 West Virginia 54 124190 2119
## 18768 2021-02-06 Wisconsin 55 600016 6615
## 18769 2021-02-06 Wyoming 56 52618 624
## 18770 2021-02-07 Alabama 1 472423 8515
## 18771 2021-02-07 Alaska 2 54880 269
## 18772 2021-02-07 Arizona 4 780872 14051
## 18773 2021-02-07 Arkansas 5 306736 5076
## 18774 2021-02-07 California 6 3417563 44152
## 18775 2021-02-07 Colorado 8 407701 5828
## 18776 2021-02-07 Connecticut 9 259372 7214
## 18777 2021-02-07 Delaware 10 80594 1208
## 18778 2021-02-07 District of Columbia 11 38035 952
## 18779 2021-02-07 Florida 12 1777975 27695
## 18780 2021-02-07 Georgia 13 917063 14642
## 18781 2021-02-07 Guam 66 8618 130
## 18782 2021-02-07 Hawaii 15 26398 415
## 18783 2021-02-07 Idaho 16 165259 1769
## 18784 2021-02-07 Illinois 17 1148947 21738
## 18785 2021-02-07 Indiana 18 642865 11817
## 18786 2021-02-07 Iowa 19 324590 5108
## 18787 2021-02-07 Kansas 20 284560 4101
## 18788 2021-02-07 Kentucky 21 381271 4224
## 18789 2021-02-07 Louisiana 22 411812 9119
## 18790 2021-02-07 Maine 23 41218 635
## 18791 2021-02-07 Maryland 24 363829 7349
## 18792 2021-02-07 Massachusetts 25 543934 14999
## 18793 2021-02-07 Michigan 26 619515 15843
## 18794 2021-02-07 Minnesota 27 468186 6367
## 18795 2021-02-07 Mississippi 28 281678 6269
## 18796 2021-02-07 Missouri 29 508990 7562
## 18797 2021-02-07 Montana 30 95813 1315
## 18798 2021-02-07 Nebraska 31 194707 2081
## 18799 2021-02-07 Nevada 32 284137 4521
## 18800 2021-02-07 New Hampshire 33 68379 1104
## 18801 2021-02-07 New Jersey 34 722166 21989
## 18802 2021-02-07 New Mexico 35 177556 3401
## 18803 2021-02-07 New York 36 1480481 44387
## 18804 2021-02-07 North Carolina 37 796986 10017
## 18805 2021-02-07 North Dakota 38 98180 1453
## 18806 2021-02-07 Northern Mariana Islands 69 133 2
## 18807 2021-02-07 Ohio 39 920217 11659
## 18808 2021-02-07 Oklahoma 40 403954 3813
## 18809 2021-02-07 Oregon 41 147122 2034
## 18810 2021-02-07 Pennsylvania 42 875557 22493
## 18811 2021-02-07 Puerto Rico 72 129454 1883
## 18812 2021-02-07 Rhode Island 44 117891 2212
## 18813 2021-02-07 South Carolina 45 466373 7651
## 18814 2021-02-07 South Dakota 46 109229 1809
## 18815 2021-02-07 Tennessee 47 729389 10370
## 18816 2021-02-07 Texas 48 2492317 39490
## 18817 2021-02-07 Utah 49 354608 1736
## 18818 2021-02-07 Vermont 50 12900 183
## 18819 2021-02-07 Virgin Islands 78 2466 24
## 18820 2021-02-07 Virginia 51 529125 6778
## 18821 2021-02-07 Washington 53 323947 4531
## 18822 2021-02-07 West Virginia 54 124708 2129
## 18823 2021-02-07 Wisconsin 55 600782 6617
## 18824 2021-02-07 Wyoming 56 52627 624
## 18825 2021-02-08 Alabama 1 473348 8523
## 18826 2021-02-08 Alaska 2 55374 269
## 18827 2021-02-08 Arizona 4 783229 14055
## 18828 2021-02-08 Arkansas 5 307373 5106
## 18829 2021-02-08 California 6 3431179 44440
## 18830 2021-02-08 Colorado 8 408793 5832
## 18831 2021-02-08 Connecticut 9 263739 7282
## 18832 2021-02-08 Delaware 10 80931 1208
## 18833 2021-02-08 District of Columbia 11 38136 956
## 18834 2021-02-08 Florida 12 1783712 27814
## 18835 2021-02-08 Georgia 13 919778 14679
## 18836 2021-02-08 Guam 66 8633 131
## 18837 2021-02-08 Hawaii 15 26428 415
## 18838 2021-02-08 Idaho 16 165826 1778
## 18839 2021-02-08 Illinois 17 1150869 21779
## 18840 2021-02-08 Indiana 18 643898 11875
## 18841 2021-02-08 Iowa 19 325219 5110
## 18842 2021-02-08 Kansas 20 286026 4197
## 18843 2021-02-08 Kentucky 21 382743 4276
## 18844 2021-02-08 Louisiana 22 412989 9142
## 18845 2021-02-08 Maine 23 41419 636
## 18846 2021-02-08 Maryland 24 364732 7372
## 18847 2021-02-08 Massachusetts 25 545303 15054
## 18848 2021-02-08 Michigan 26 621737 15854
## 18849 2021-02-08 Minnesota 27 468750 6370
## 18850 2021-02-08 Mississippi 28 282313 6270
## 18851 2021-02-08 Missouri 29 510376 7578
## 18852 2021-02-08 Montana 30 95993 1315
## 18853 2021-02-08 Nebraska 31 194957 2092
## 18854 2021-02-08 Nevada 32 284679 4524
## 18855 2021-02-08 New Hampshire 33 68499 1106
## 18856 2021-02-08 New Jersey 34 724727 22011
## 18857 2021-02-08 New Mexico 35 177867 3414
## 18858 2021-02-08 New York 36 1489453 44512
## 18859 2021-02-08 North Carolina 37 799879 10030
## 18860 2021-02-08 North Dakota 38 98210 1454
## 18861 2021-02-08 Northern Mariana Islands 69 133 2
## 18862 2021-02-08 Ohio 39 922143 11695
## 18863 2021-02-08 Oklahoma 40 404994 3817
## 18864 2021-02-08 Oregon 41 147419 2043
## 18865 2021-02-08 Pennsylvania 42 878679 22497
## 18866 2021-02-08 Puerto Rico 72 129776 1888
## 18867 2021-02-08 Rhode Island 44 119104 2236
## 18868 2021-02-08 South Carolina 45 468403 7690
## 18869 2021-02-08 South Dakota 46 109283 1809
## 18870 2021-02-08 Tennessee 47 731454 10465
## 18871 2021-02-08 Texas 48 2503200 39655
## 18872 2021-02-08 Utah 49 355122 1739
## 18873 2021-02-08 Vermont 50 13046 183
## 18874 2021-02-08 Virgin Islands 78 2466 24
## 18875 2021-02-08 Virginia 51 530825 6820
## 18876 2021-02-08 Washington 53 326625 4540
## 18877 2021-02-08 West Virginia 54 125106 2131
## 18878 2021-02-08 Wisconsin 55 601391 6619
## 18879 2021-02-08 Wyoming 56 52784 624
## 18880 2021-02-09 Alabama 1 474666 8579
## 18881 2021-02-09 Alaska 2 55500 269
## 18882 2021-02-09 Arizona 4 788540 14317
## 18883 2021-02-09 Arkansas 5 308848 5148
## 18884 2021-02-09 California 6 3441692 44973
## 18885 2021-02-09 Colorado 8 409652 5842
## 18886 2021-02-09 Connecticut 9 264608 7298
## 18887 2021-02-09 Delaware 10 81210 1221
## 18888 2021-02-09 District of Columbia 11 38281 961
## 18889 2021-02-09 Florida 12 1790735 28047
## 18890 2021-02-09 Georgia 13 923544 14849
## 18891 2021-02-09 Guam 66 8642 131
## 18892 2021-02-09 Hawaii 15 26456 415
## 18893 2021-02-09 Idaho 16 166241 1782
## 18894 2021-02-09 Illinois 17 1152942 21802
## 18895 2021-02-09 Indiana 18 645034 11942
## 18896 2021-02-09 Iowa 19 326150 5145
## 18897 2021-02-09 Kansas 20 286066 4197
## 18898 2021-02-09 Kentucky 21 384958 4304
## 18899 2021-02-09 Louisiana 22 414354 9162
## 18900 2021-02-09 Maine 23 41630 639
## 18901 2021-02-09 Maryland 24 365708 7413
## 18902 2021-02-09 Massachusetts 25 546896 15124
## 18903 2021-02-09 Michigan 26 622586 15914
## 18904 2021-02-09 Minnesota 27 469322 6376
## 18905 2021-02-09 Mississippi 28 282969 6342
## 18906 2021-02-09 Missouri 29 511167 7589
## 18907 2021-02-09 Montana 30 96371 1316
## 18908 2021-02-09 Nebraska 31 195327 2100
## 18909 2021-02-09 Nevada 32 285178 4565
## 18910 2021-02-09 New Hampshire 33 68918 1109
## 18911 2021-02-09 New Jersey 34 728304 22103
## 18912 2021-02-09 New Mexico 35 178280 3432
## 18913 2021-02-09 New York 36 1497732 44683
## 18914 2021-02-09 North Carolina 37 803935 10088
## 18915 2021-02-09 North Dakota 38 98205 1457
## 18916 2021-02-09 Northern Mariana Islands 69 133 2
## 18917 2021-02-09 Ohio 39 925350 11793
## 18918 2021-02-09 Oklahoma 40 406064 3870
## 18919 2021-02-09 Oregon 41 147932 2050
## 18920 2021-02-09 Pennsylvania 42 883005 22656
## 18921 2021-02-09 Puerto Rico 72 130017 1893
## 18922 2021-02-09 Rhode Island 44 119434 2248
## 18923 2021-02-09 South Carolina 45 470311 7693
## 18924 2021-02-09 South Dakota 46 109405 1809
## 18925 2021-02-09 Tennessee 47 732979 10528
## 18926 2021-02-09 Texas 48 2516432 39973
## 18927 2021-02-09 Utah 49 356040 1748
## 18928 2021-02-09 Vermont 50 13105 186
## 18929 2021-02-09 Virgin Islands 78 2485 24
## 18930 2021-02-09 Virginia 51 534116 6898
## 18931 2021-02-09 Washington 53 327397 4635
## 18932 2021-02-09 West Virginia 54 125522 2150
## 18933 2021-02-09 Wisconsin 55 602256 6669
## 18934 2021-02-09 Wyoming 56 52830 647
## 18935 2021-02-10 Alabama 1 476067 8888
## 18936 2021-02-10 Alaska 2 55701 269
## 18937 2021-02-10 Arizona 4 790271 14507
## 18938 2021-02-10 Arkansas 5 309940 5174
## 18939 2021-02-10 California 6 3450284 45436
## 18940 2021-02-10 Colorado 8 410384 5868
## 18941 2021-02-10 Connecticut 9 265496 7326
## 18942 2021-02-10 Delaware 10 81461 1245
## 18943 2021-02-10 District of Columbia 11 38348 965
## 18944 2021-02-10 Florida 12 1798272 28207
## 18945 2021-02-10 Georgia 13 926947 14966
## 18946 2021-02-10 Guam 66 8652 131
## 18947 2021-02-10 Hawaii 15 26507 420
## 18948 2021-02-10 Idaho 16 166656 1793
## 18949 2021-02-10 Illinois 17 1155802 21869
## 18950 2021-02-10 Indiana 18 646476 12001
## 18951 2021-02-10 Iowa 19 327061 5174
## 18952 2021-02-10 Kansas 20 287914 4303
## 18953 2021-02-10 Kentucky 21 387043 4339
## 18954 2021-02-10 Louisiana 22 414687 9212
## 18955 2021-02-10 Maine 23 41883 641
## 18956 2021-02-10 Maryland 24 366845 7446
## 18957 2021-02-10 Massachusetts 25 548946 15207
## 18958 2021-02-10 Michigan 26 623920 15929
## 18959 2021-02-10 Minnesota 27 469973 6387
## 18960 2021-02-10 Mississippi 28 283753 6367
## 18961 2021-02-10 Missouri 29 512440 7606
## 18962 2021-02-10 Montana 30 96678 1321
## 18963 2021-02-10 Nebraska 31 195828 2109
## 18964 2021-02-10 Nevada 32 285869 4585
## 18965 2021-02-10 New Hampshire 33 69247 1116
## 18966 2021-02-10 New Jersey 34 732674 22191
## 18967 2021-02-10 New Mexico 35 178790 3463
## 18968 2021-02-10 New York 36 1504316 44851
## 18969 2021-02-10 North Carolina 37 807554 10226
## 18970 2021-02-10 North Dakota 38 98244 1459
## 18971 2021-02-10 Northern Mariana Islands 69 133 2
## 18972 2021-02-10 Ohio 39 928631 11856
## 18973 2021-02-10 Oklahoma 40 407724 3900
## 18974 2021-02-10 Oregon 41 148475 2060
## 18975 2021-02-10 Pennsylvania 42 886115 22795
## 18976 2021-02-10 Puerto Rico 72 130109 1897
## 18977 2021-02-10 Rhode Island 44 119893 2259
## 18978 2021-02-10 South Carolina 45 473140 7742
## 18979 2021-02-10 South Dakota 46 109580 1815
## 18980 2021-02-10 Tennessee 47 735597 10626
## 18981 2021-02-10 Texas 48 2529516 40297
## 18982 2021-02-10 Utah 49 357339 1766
## 18983 2021-02-10 Vermont 50 13122 187
## 18984 2021-02-10 Virgin Islands 78 2485 24
## 18985 2021-02-10 Virginia 51 537319 6932
## 18986 2021-02-10 Washington 53 328246 4675
## 18987 2021-02-10 West Virginia 54 125951 2175
## 18988 2021-02-10 Wisconsin 55 603257 6708
## 18989 2021-02-10 Wyoming 56 52874 647
## 18990 2021-02-11 Alabama 1 477570 9021
## 18991 2021-02-11 Alaska 2 55850 269
## 18992 2021-02-11 Arizona 4 792695 14690
## 18993 2021-02-11 Arkansas 5 311043 5199
## 18994 2021-02-11 California 6 3460901 45976
## 18995 2021-02-11 Colorado 8 411997 5881
## 18996 2021-02-11 Connecticut 9 266499 7354
## 18997 2021-02-11 Delaware 10 81875 1262
## 18998 2021-02-11 District of Columbia 11 38533 973
## 18999 2021-02-11 Florida 12 1806797 28381
## 19000 2021-02-11 Georgia 13 931043 15050
## 19001 2021-02-11 Guam 66 8655 131
## 19002 2021-02-11 Hawaii 15 26591 421
## 19003 2021-02-11 Idaho 16 167026 1793
## 19004 2021-02-11 Illinois 17 1158595 21985
## 19005 2021-02-11 Indiana 18 648183 12027
## 19006 2021-02-11 Iowa 19 327432 5196
## 19007 2021-02-11 Kansas 20 288003 4303
## 19008 2021-02-11 Kentucky 21 388867 4375
## 19009 2021-02-11 Louisiana 22 417415 9239
## 19010 2021-02-11 Maine 23 42058 641
## 19011 2021-02-11 Maryland 24 368044 7467
## 19012 2021-02-11 Massachusetts 25 551396 15269
## 19013 2021-02-11 Michigan 26 625389 16009
## 19014 2021-02-11 Minnesota 27 470871 6411
## 19015 2021-02-11 Mississippi 28 284664 6390
## 19016 2021-02-11 Missouri 29 513568 7798
## 19017 2021-02-11 Montana 30 96938 1322
## 19018 2021-02-11 Nebraska 31 196172 2117
## 19019 2021-02-11 Nevada 32 286514 4640
## 19020 2021-02-11 New Hampshire 33 69612 1117
## 19021 2021-02-11 New Jersey 34 736330 22329
## 19022 2021-02-11 New Mexico 35 179323 3481
## 19023 2021-02-11 New York 36 1514327 44992
## 19024 2021-02-11 North Carolina 37 812155 10336
## 19025 2021-02-11 North Dakota 38 98383 1460
## 19026 2021-02-11 Northern Mariana Islands 69 133 2
## 19027 2021-02-11 Ohio 39 931437 12577
## 19028 2021-02-11 Oklahoma 40 409401 3948
## 19029 2021-02-11 Oregon 41 149082 2067
## 19030 2021-02-11 Pennsylvania 42 890100 22908
## 19031 2021-02-11 Puerto Rico 72 130251 1902
## 19032 2021-02-11 Rhode Island 44 120381 2274
## 19033 2021-02-11 South Carolina 45 476287 7837
## 19034 2021-02-11 South Dakota 46 109859 1829
## 19035 2021-02-11 Tennessee 47 737833 10721
## 19036 2021-02-11 Texas 48 2541392 40661
## 19037 2021-02-11 Utah 49 358581 1776
## 19038 2021-02-11 Vermont 50 13249 188
## 19039 2021-02-11 Virgin Islands 78 2505 25
## 19040 2021-02-11 Virginia 51 541018 6958
## 19041 2021-02-11 Washington 53 329170 4701
## 19042 2021-02-11 West Virginia 54 126420 2187
## 19043 2021-02-11 Wisconsin 55 604683 6725
## 19044 2021-02-11 Wyoming 56 52979 647
## 19045 2021-02-12 Alabama 1 478667 9180
## 19046 2021-02-12 Alaska 2 56008 271
## 19047 2021-02-12 Arizona 4 794224 14843
## 19048 2021-02-12 Arkansas 5 311608 5212
## 19049 2021-02-12 California 6 3470426 46435
## 19050 2021-02-12 Colorado 8 414171 5893
## 19051 2021-02-12 Connecticut 9 267337 7381
## 19052 2021-02-12 Delaware 10 82263 1269
## 19053 2021-02-12 District of Columbia 11 38670 976
## 19054 2021-02-12 Florida 12 1814414 28564
## 19055 2021-02-12 Georgia 13 934874 15239
## 19056 2021-02-12 Guam 66 8658 131
## 19057 2021-02-12 Hawaii 15 26672 422
## 19058 2021-02-12 Idaho 16 167350 1801
## 19059 2021-02-12 Illinois 17 1161206 22027
## 19060 2021-02-12 Indiana 18 649610 12117
## 19061 2021-02-12 Iowa 19 328565 5223
## 19062 2021-02-12 Kansas 20 289210 4364
## 19063 2021-02-12 Kentucky 21 390634 4420
## 19064 2021-02-12 Louisiana 22 418585 9276
## 19065 2021-02-12 Maine 23 42259 643
## 19066 2021-02-12 Maryland 24 369156 7503
## 19067 2021-02-12 Massachusetts 25 553812 15358
## 19068 2021-02-12 Michigan 26 626793 16018
## 19069 2021-02-12 Minnesota 27 471919 6430
## 19070 2021-02-12 Mississippi 28 285648 6429
## 19071 2021-02-12 Missouri 29 514627 7840
## 19072 2021-02-12 Montana 30 97159 1325
## 19073 2021-02-12 Nebraska 31 196616 2124
## 19074 2021-02-12 Nevada 32 287091 4668
## 19075 2021-02-12 New Hampshire 33 70072 1126
## 19076 2021-02-12 New Jersey 34 740062 22393
## 19077 2021-02-12 New Mexico 35 179724 3504
## 19078 2021-02-12 New York 36 1523042 45138
## 19079 2021-02-12 North Carolina 37 816212 10408
## 19080 2021-02-12 North Dakota 38 98496 1461
## 19081 2021-02-12 Northern Mariana Islands 69 134 2
## 19082 2021-02-12 Ohio 39 934742 15136
## 19083 2021-02-12 Oklahoma 40 410818 3959
## 19084 2021-02-12 Oregon 41 149576 2109
## 19085 2021-02-12 Pennsylvania 42 893359 23007
## 19086 2021-02-12 Puerto Rico 72 130539 1907
## 19087 2021-02-12 Rhode Island 44 120821 2290
## 19088 2021-02-12 South Carolina 45 480157 7894
## 19089 2021-02-12 South Dakota 46 110068 1831
## 19090 2021-02-12 Tennessee 47 739996 10802
## 19091 2021-02-12 Texas 48 2553677 41063
## 19092 2021-02-12 Utah 49 359641 1786
## 19093 2021-02-12 Vermont 50 13415 189
## 19094 2021-02-12 Virgin Islands 78 2525 25
## 19095 2021-02-12 Virginia 51 544209 6966
## 19096 2021-02-12 Washington 53 330427 4739
## 19097 2021-02-12 West Virginia 54 126887 2200
## 19098 2021-02-12 Wisconsin 55 605785 6737
## 19099 2021-02-12 Wyoming 56 53086 647
## 19100 2021-02-13 Alabama 1 479856 9242
## 19101 2021-02-13 Alaska 2 56008 271
## 19102 2021-02-13 Arizona 4 796094 14957
## 19103 2021-02-13 Arkansas 5 312562 5252
## 19104 2021-02-13 California 6 3479586 46865
## 19105 2021-02-13 Colorado 8 415261 5913
## 19106 2021-02-13 Connecticut 9 267337 7381
## 19107 2021-02-13 Delaware 10 82672 1282
## 19108 2021-02-13 District of Columbia 11 38796 979
## 19109 2021-02-13 Florida 12 1821929 28682
## 19110 2021-02-13 Georgia 13 938577 15377
## 19111 2021-02-13 Guam 66 8661 131
## 19112 2021-02-13 Hawaii 15 26729 422
## 19113 2021-02-13 Idaho 16 167566 1805
## 19114 2021-02-13 Illinois 17 1163232 22087
## 19115 2021-02-13 Indiana 18 650842 12149
## 19116 2021-02-13 Iowa 19 329039 5236
## 19117 2021-02-13 Kansas 20 289210 4364
## 19118 2021-02-13 Kentucky 21 391449 4441
## 19119 2021-02-13 Louisiana 22 418585 9276
## 19120 2021-02-13 Maine 23 42419 647
## 19121 2021-02-13 Maryland 24 370316 7536
## 19122 2021-02-13 Massachusetts 25 555895 15424
## 19123 2021-02-13 Michigan 26 628145 16108
## 19124 2021-02-13 Minnesota 27 472859 6437
## 19125 2021-02-13 Mississippi 28 286343 6461
## 19126 2021-02-13 Missouri 29 515162 7870
## 19127 2021-02-13 Montana 30 97338 1328
## 19128 2021-02-13 Nebraska 31 197449 2123
## 19129 2021-02-13 Nevada 32 287874 4695
## 19130 2021-02-13 New Hampshire 33 70505 1130
## 19131 2021-02-13 New Jersey 34 743819 22440
## 19132 2021-02-13 New Mexico 35 180289 3518
## 19133 2021-02-13 New York 36 1531797 45295
## 19134 2021-02-13 North Carolina 37 819751 10482
## 19135 2021-02-13 North Dakota 38 98581 1461
## 19136 2021-02-13 Northern Mariana Islands 69 134 2
## 19137 2021-02-13 Ohio 39 937541 16340
## 19138 2021-02-13 Oklahoma 40 412276 3994
## 19139 2021-02-13 Oregon 41 150034 2137
## 19140 2021-02-13 Pennsylvania 42 897038 23114
## 19141 2021-02-13 Puerto Rico 72 130928 1915
## 19142 2021-02-13 Rhode Island 44 120821 2290
## 19143 2021-02-13 South Carolina 45 483140 7911
## 19144 2021-02-13 South Dakota 46 110205 1838
## 19145 2021-02-13 Tennessee 47 741816 10811
## 19146 2021-02-13 Texas 48 2561684 41320
## 19147 2021-02-13 Utah 49 360642 1790
## 19148 2021-02-13 Vermont 50 13561 189
## 19149 2021-02-13 Virgin Islands 78 2525 25
## 19150 2021-02-13 Virginia 51 547424 6996
## 19151 2021-02-13 Washington 53 331033 4739
## 19152 2021-02-13 West Virginia 54 127282 2201
## 19153 2021-02-13 Wisconsin 55 606651 6747
## 19154 2021-02-13 Wyoming 56 53086 647
## 19155 2021-02-14 Alabama 1 480931 9242
## 19156 2021-02-14 Alaska 2 56008 271
## 19157 2021-02-14 Arizona 4 797537 14978
## 19158 2021-02-14 Arkansas 5 313028 5265
## 19159 2021-02-14 California 6 3485533 47055
## 19160 2021-02-14 Colorado 8 415857 5921
## 19161 2021-02-14 Connecticut 9 267337 7381
## 19162 2021-02-14 Delaware 10 83003 1283
## 19163 2021-02-14 District of Columbia 11 38918 979
## 19164 2021-02-14 Florida 12 1827365 28778
## 19165 2021-02-14 Georgia 13 940451 15397
## 19166 2021-02-14 Guam 66 8664 131
## 19167 2021-02-14 Hawaii 15 26772 423
## 19168 2021-02-14 Idaho 16 167566 1805
## 19169 2021-02-14 Illinois 17 1164743 22121
## 19170 2021-02-14 Indiana 18 652060 12173
## 19171 2021-02-14 Iowa 19 329258 5236
## 19172 2021-02-14 Kansas 20 289225 4364
## 19173 2021-02-14 Kentucky 21 392990 4447
## 19174 2021-02-14 Louisiana 22 419891 9292
## 19175 2021-02-14 Maine 23 42529 649
## 19176 2021-02-14 Maryland 24 371163 7554
## 19177 2021-02-14 Massachusetts 25 557777 15484
## 19178 2021-02-14 Michigan 26 628199 16108
## 19179 2021-02-14 Minnesota 27 473635 6444
## 19180 2021-02-14 Mississippi 28 287436 6462
## 19181 2021-02-14 Missouri 29 515507 7875
## 19182 2021-02-14 Montana 30 97425 1328
## 19183 2021-02-14 Nebraska 31 197658 2123
## 19184 2021-02-14 Nevada 32 288483 4709
## 19185 2021-02-14 New Hampshire 33 70785 1133
## 19186 2021-02-14 New Jersey 34 745987 22454
## 19187 2021-02-14 New Mexico 35 180571 3531
## 19188 2021-02-14 New York 36 1540127 45431
## 19189 2021-02-14 North Carolina 37 822542 10524
## 19190 2021-02-14 North Dakota 38 98627 1461
## 19191 2021-02-14 Northern Mariana Islands 69 134 2
## 19192 2021-02-14 Ohio 39 939350 16346
## 19193 2021-02-14 Oklahoma 40 413542 4024
## 19194 2021-02-14 Oregon 41 150281 2137
## 19195 2021-02-14 Pennsylvania 42 899474 23136
## 19196 2021-02-14 Puerto Rico 72 131224 1919
## 19197 2021-02-14 Rhode Island 44 120821 2290
## 19198 2021-02-14 South Carolina 45 487293 7998
## 19199 2021-02-14 South Dakota 46 110315 1844
## 19200 2021-02-14 Tennessee 47 743266 10842
## 19201 2021-02-14 Texas 48 2566191 41440
## 19202 2021-02-14 Utah 49 361353 1794
## 19203 2021-02-14 Vermont 50 13677 189
## 19204 2021-02-14 Virgin Islands 78 2525 25
## 19205 2021-02-14 Virginia 51 549999 7012
## 19206 2021-02-14 Washington 53 331164 4739
## 19207 2021-02-14 West Virginia 54 127588 2210
## 19208 2021-02-14 Wisconsin 55 607213 6748
## 19209 2021-02-14 Wyoming 56 53136 647
## 19210 2021-02-15 Alabama 1 481605 9244
## 19211 2021-02-15 Alaska 2 56008 271
## 19212 2021-02-15 Arizona 4 798845 14978
## 19213 2021-02-15 Arkansas 5 313348 5275
## 19214 2021-02-15 California 6 3490542 47115
## 19215 2021-02-15 Colorado 8 416905 5924
## 19216 2021-02-15 Connecticut 9 270242 7447
## 19217 2021-02-15 Delaware 10 83239 1283
## 19218 2021-02-15 District of Columbia 11 39001 980
## 19219 2021-02-15 Florida 12 1830980 28933
## 19220 2021-02-15 Georgia 13 942484 15451
## 19221 2021-02-15 Guam 66 8668 131
## 19222 2021-02-15 Hawaii 15 26803 423
## 19223 2021-02-15 Idaho 16 167566 1805
## 19224 2021-02-15 Illinois 17 1166098 22166
## 19225 2021-02-15 Indiana 18 652836 12191
## 19226 2021-02-15 Iowa 19 329726 5237
## 19227 2021-02-15 Kansas 20 290510 4406
## 19228 2021-02-15 Kentucky 21 393775 4464
## 19229 2021-02-15 Louisiana 22 420394 9325
## 19230 2021-02-15 Maine 23 42677 649
## 19231 2021-02-15 Maryland 24 371885 7580
## 19232 2021-02-15 Massachusetts 25 559350 15517
## 19233 2021-02-15 Michigan 26 629490 16119
## 19234 2021-02-15 Minnesota 27 474237 6446
## 19235 2021-02-15 Mississippi 28 287980 6464
## 19236 2021-02-15 Missouri 29 515870 7879
## 19237 2021-02-15 Montana 30 97575 1329
## 19238 2021-02-15 Nebraska 31 197761 2124
## 19239 2021-02-15 Nevada 32 288764 4722
## 19240 2021-02-15 New Hampshire 33 71017 1135
## 19241 2021-02-15 New Jersey 34 747432 22466
## 19242 2021-02-15 New Mexico 35 180761 3540
## 19243 2021-02-15 New York 36 1546665 45552
## 19244 2021-02-15 North Carolina 37 825692 10545
## 19245 2021-02-15 North Dakota 38 98673 1461
## 19246 2021-02-15 Northern Mariana Islands 69 134 2
## 19247 2021-02-15 Ohio 39 941265 16394
## 19248 2021-02-15 Oklahoma 40 414272 4041
## 19249 2021-02-15 Oregon 41 150464 2137
## 19250 2021-02-15 Pennsylvania 42 901245 23157
## 19251 2021-02-15 Puerto Rico 72 131452 1920
## 19252 2021-02-15 Rhode Island 44 121787 2334
## 19253 2021-02-15 South Carolina 45 489018 8034
## 19254 2021-02-15 South Dakota 46 110376 1844
## 19255 2021-02-15 Tennessee 47 745150 10846
## 19256 2021-02-15 Texas 48 2569113 41484
## 19257 2021-02-15 Utah 49 361815 1796
## 19258 2021-02-15 Vermont 50 13862 190
## 19259 2021-02-15 Virgin Islands 78 2542 25
## 19260 2021-02-15 Virginia 51 551538 7016
## 19261 2021-02-15 Washington 53 331305 4739
## 19262 2021-02-15 West Virginia 54 127889 2212
## 19263 2021-02-15 Wisconsin 55 607639 6753
## 19264 2021-02-15 Wyoming 56 53136 647
## 19265 2021-02-16 Alabama 1 482488 9257
## 19266 2021-02-16 Alaska 2 56504 276
## 19267 2021-02-16 Arizona 4 799944 14981
## 19268 2021-02-16 Arkansas 5 313525 5287
## 19269 2021-02-16 California 6 3499336 47446
## 19270 2021-02-16 Colorado 8 417688 5932
## 19271 2021-02-16 Connecticut 9 270822 7449
## 19272 2021-02-16 Delaware 10 83369 1291
## 19273 2021-02-16 District of Columbia 11 39131 982
## 19274 2021-02-16 Florida 12 1837277 29153
## 19275 2021-02-16 Georgia 13 945339 15691
## 19276 2021-02-16 Guam 66 8670 131
## 19277 2021-02-16 Hawaii 15 26819 423
## 19278 2021-02-16 Idaho 16 168097 1808
## 19279 2021-02-16 Illinois 17 1167889 22199
## 19280 2021-02-16 Indiana 18 653713 12231
## 19281 2021-02-16 Iowa 19 330318 5263
## 19282 2021-02-16 Kansas 20 290556 4406
## 19283 2021-02-16 Kentucky 21 394829 4491
## 19284 2021-02-16 Louisiana 22 420394 9325
## 19285 2021-02-16 Maine 23 42768 651
## 19286 2021-02-16 Maryland 24 372403 7612
## 19287 2021-02-16 Massachusetts 25 560576 15567
## 19288 2021-02-16 Michigan 26 630605 16138
## 19289 2021-02-16 Minnesota 27 474689 6448
## 19290 2021-02-16 Mississippi 28 288714 6501
## 19291 2021-02-16 Missouri 29 516710 7888
## 19292 2021-02-16 Montana 30 97759 1332
## 19293 2021-02-16 Nebraska 31 197904 2128
## 19294 2021-02-16 Nevada 32 289094 4736
## 19295 2021-02-16 New Hampshire 33 71215 1136
## 19296 2021-02-16 New Jersey 34 751065 22497
## 19297 2021-02-16 New Mexico 35 181061 3552
## 19298 2021-02-16 New York 36 1553374 45683
## 19299 2021-02-16 North Carolina 37 827985 10611
## 19300 2021-02-16 North Dakota 38 98811 1461
## 19301 2021-02-16 Northern Mariana Islands 69 134 2
## 19302 2021-02-16 Ohio 39 943291 16453
## 19303 2021-02-16 Oklahoma 40 414780 4061
## 19304 2021-02-16 Oregon 41 150875 2138
## 19305 2021-02-16 Pennsylvania 42 904203 23166
## 19306 2021-02-16 Puerto Rico 72 131932 1924
## 19307 2021-02-16 Rhode Island 44 122072 2344
## 19308 2021-02-16 South Carolina 45 490453 8055
## 19309 2021-02-16 South Dakota 46 110593 1844
## 19310 2021-02-16 Tennessee 47 746183 10862
## 19311 2021-02-16 Texas 48 2572743 41546
## 19312 2021-02-16 Utah 49 362406 1797
## 19313 2021-02-16 Vermont 50 13917 191
## 19314 2021-02-16 Virgin Islands 78 2542 25
## 19315 2021-02-16 Virginia 51 553308 7037
## 19316 2021-02-16 Washington 53 333185 4777
## 19317 2021-02-16 West Virginia 54 128117 2216
## 19318 2021-02-16 Wisconsin 55 608420 6792
## 19319 2021-02-16 Wyoming 56 53351 662
## 19320 2021-02-17 Alabama 1 483167 9346
## 19321 2021-02-17 Alaska 2 56559 277
## 19322 2021-02-17 Arizona 4 801741 15084
## 19323 2021-02-17 Arkansas 5 314192 5313
## 19324 2021-02-17 California 6 3505610 47902
## 19325 2021-02-17 Colorado 8 418822 5945
## 19326 2021-02-17 Connecticut 9 271356 7476
## 19327 2021-02-17 Delaware 10 83581 1316
## 19328 2021-02-17 District of Columbia 11 39180 985
## 19329 2021-02-17 Florida 12 1844619 29310
## 19330 2021-02-17 Georgia 13 948719 15779
## 19331 2021-02-17 Guam 66 8672 131
## 19332 2021-02-17 Hawaii 15 26846 424
## 19333 2021-02-17 Idaho 16 168503 1819
## 19334 2021-02-17 Illinois 17 1169747 22224
## 19335 2021-02-17 Indiana 18 654636 12250
## 19336 2021-02-17 Iowa 19 330906 5306
## 19337 2021-02-17 Kansas 20 291868 4521
## 19338 2021-02-17 Kentucky 21 395766 4511
## 19339 2021-02-17 Louisiana 22 421018 9391
## 19340 2021-02-17 Maine 23 42872 654
## 19341 2021-02-17 Maryland 24 373161 7630
## 19342 2021-02-17 Massachusetts 25 561936 15623
## 19343 2021-02-17 Michigan 26 631932 16151
## 19344 2021-02-17 Minnesota 27 475447 6458
## 19345 2021-02-17 Mississippi 28 289398 6524
## 19346 2021-02-17 Missouri 29 517798 7929
## 19347 2021-02-17 Montana 30 97995 1335
## 19348 2021-02-17 Nebraska 31 198215 2146
## 19349 2021-02-17 Nevada 32 289465 4776
## 19350 2021-02-17 New Hampshire 33 71965 1148
## 19351 2021-02-17 New Jersey 34 755174 22589
## 19352 2021-02-17 New Mexico 35 181332 3564
## 19353 2021-02-17 New York 36 1559299 45807
## 19354 2021-02-17 North Carolina 37 830932 10712
## 19355 2021-02-17 North Dakota 38 98931 1461
## 19356 2021-02-17 Northern Mariana Islands 69 135 2
## 19357 2021-02-17 Ohio 39 945107 16513
## 19358 2021-02-17 Oklahoma 40 415858 4089
## 19359 2021-02-17 Oregon 41 151257 2149
## 19360 2021-02-17 Pennsylvania 42 907736 23360
## 19361 2021-02-17 Puerto Rico 72 132043 1930
## 19362 2021-02-17 Rhode Island 44 122440 2352
## 19363 2021-02-17 South Carolina 45 492369 8117
## 19364 2021-02-17 South Dakota 46 110685 1844
## 19365 2021-02-17 Tennessee 47 747117 10892
## 19366 2021-02-17 Texas 48 2577230 41650
## 19367 2021-02-17 Utah 49 363306 1806
## 19368 2021-02-17 Vermont 50 13996 191
## 19369 2021-02-17 Virgin Islands 78 2545 25
## 19370 2021-02-17 Virginia 51 555592 7075
## 19371 2021-02-17 Washington 53 334284 4824
## 19372 2021-02-17 West Virginia 54 128405 2225
## 19373 2021-02-17 Wisconsin 55 609192 6803
## 19374 2021-02-17 Wyoming 56 53450 662
## 19375 2021-02-18 Alabama 1 484365 9424
## 19376 2021-02-18 Alaska 2 56768 277
## 19377 2021-02-18 Arizona 4 803158 15294
## 19378 2021-02-18 Arkansas 5 314445 5323
## 19379 2021-02-18 California 6 3513458 48334
## 19380 2021-02-18 Colorado 8 420094 5966
## 19381 2021-02-18 Connecticut 9 271903 7496
## 19382 2021-02-18 Delaware 10 83852 1326
## 19383 2021-02-18 District of Columbia 11 39301 992
## 19384 2021-02-18 Florida 12 1849736 29473
## 19385 2021-02-18 Georgia 13 952133 15906
## 19386 2021-02-18 Guam 66 8674 131
## 19387 2021-02-18 Hawaii 15 26906 425
## 19388 2021-02-18 Idaho 16 168783 1828
## 19389 2021-02-18 Illinois 17 1171687 22297
## 19390 2021-02-18 Indiana 18 655396 12281
## 19391 2021-02-18 Iowa 19 331502 5321
## 19392 2021-02-18 Kansas 20 291962 4526
## 19393 2021-02-18 Kentucky 21 396800 4539
## 19394 2021-02-18 Louisiana 22 421846 9406
## 19395 2021-02-18 Maine 23 43090 655
## 19396 2021-02-18 Maryland 24 374148 7661
## 19397 2021-02-18 Massachusetts 25 563976 15686
## 19398 2021-02-18 Michigan 26 633131 16243
## 19399 2021-02-18 Minnesota 27 476360 6472
## 19400 2021-02-18 Mississippi 28 289532 6531
## 19401 2021-02-18 Missouri 29 518605 8087
## 19402 2021-02-18 Montana 30 98211 1338
## 19403 2021-02-18 Nebraska 31 198481 2151
## 19404 2021-02-18 Nevada 32 289962 4807
## 19405 2021-02-18 New Hampshire 33 72399 1150
## 19406 2021-02-18 New Jersey 34 758450 22721
## 19407 2021-02-18 New Mexico 35 181739 3582
## 19408 2021-02-18 New York 36 1568881 45957
## 19409 2021-02-18 North Carolina 37 834923 10804
## 19410 2021-02-18 North Dakota 38 99064 1465
## 19411 2021-02-18 Northern Mariana Islands 69 135 2
## 19412 2021-02-18 Ohio 39 947389 16611
## 19413 2021-02-18 Oklahoma 40 416476 4112
## 19414 2021-02-18 Oregon 41 151713 2155
## 19415 2021-02-18 Pennsylvania 42 911033 23452
## 19416 2021-02-18 Puerto Rico 72 132121 1940
## 19417 2021-02-18 Rhode Island 44 122859 2367
## 19418 2021-02-18 South Carolina 45 495044 8155
## 19419 2021-02-18 South Dakota 46 110871 1847
## 19420 2021-02-18 Tennessee 47 748207 10964
## 19421 2021-02-18 Texas 48 2579584 41764
## 19422 2021-02-18 Utah 49 364457 1813
## 19423 2021-02-18 Vermont 50 14149 193
## 19424 2021-02-18 Virgin Islands 78 2558 25
## 19425 2021-02-18 Virginia 51 557896 7090
## 19426 2021-02-18 Washington 53 335338 4868
## 19427 2021-02-18 West Virginia 54 128760 2236
## 19428 2021-02-18 Wisconsin 55 610056 6820
## 19429 2021-02-18 Wyoming 56 53531 662
## 19430 2021-02-19 Alabama 1 485212 9573
## 19431 2021-02-19 Alaska 2 56979 278
## 19432 2021-02-19 Arizona 4 805037 15439
## 19433 2021-02-19 Arkansas 5 314713 5336
## 19434 2021-02-19 California 6 3521349 48794
## 19435 2021-02-19 Colorado 8 421327 5980
## 19436 2021-02-19 Connecticut 9 273101 7523
## 19437 2021-02-19 Delaware 10 84181 1343
## 19438 2021-02-19 District of Columbia 11 39461 993
## 19439 2021-02-19 Florida 12 1856419 29691
## 19440 2021-02-19 Georgia 13 955724 16110
## 19441 2021-02-19 Guam 66 8684 131
## 19442 2021-02-19 Hawaii 15 26962 427
## 19443 2021-02-19 Idaho 16 169084 1829
## 19444 2021-02-19 Illinois 17 1173897 22368
## 19445 2021-02-19 Indiana 18 656433 12325
## 19446 2021-02-19 Iowa 19 331747 5336
## 19447 2021-02-19 Kansas 20 293869 4614
## 19448 2021-02-19 Kentucky 21 398665 4562
## 19449 2021-02-19 Louisiana 22 422287 9440
## 19450 2021-02-19 Maine 23 43224 656
## 19451 2021-02-19 Maryland 24 375156 7677
## 19452 2021-02-19 Massachusetts 25 565794 15726
## 19453 2021-02-19 Michigan 26 634539 16265
## 19454 2021-02-19 Minnesota 27 477355 6480
## 19455 2021-02-19 Mississippi 28 289892 6534
## 19456 2021-02-19 Missouri 29 519441 8140
## 19457 2021-02-19 Montana 30 98465 1340
## 19458 2021-02-19 Nebraska 31 198949 2167
## 19459 2021-02-19 Nevada 32 290399 4838
## 19460 2021-02-19 New Hampshire 33 72767 1152
## 19461 2021-02-19 New Jersey 34 761496 22784
## 19462 2021-02-19 New Mexico 35 182050 3601
## 19463 2021-02-19 New York 36 1577454 46119
## 19464 2021-02-19 North Carolina 37 838126 10863
## 19465 2021-02-19 North Dakota 38 99183 1465
## 19466 2021-02-19 Northern Mariana Islands 69 135 2
## 19467 2021-02-19 Ohio 39 949695 16693
## 19468 2021-02-19 Oklahoma 40 417345 4132
## 19469 2021-02-19 Oregon 41 152190 2155
## 19470 2021-02-19 Pennsylvania 42 913825 23529
## 19471 2021-02-19 Puerto Rico 72 132239 1947
## 19472 2021-02-19 Rhode Island 44 123145 2376
## 19473 2021-02-19 South Carolina 45 497937 8213
## 19474 2021-02-19 South Dakota 46 111018 1853
## 19475 2021-02-19 Tennessee 47 749512 10971
## 19476 2021-02-19 Texas 48 2585482 42000
## 19477 2021-02-19 Utah 49 365314 1834
## 19478 2021-02-19 Vermont 50 14251 193
## 19479 2021-02-19 Virgin Islands 78 2575 25
## 19480 2021-02-19 Virginia 51 559930 7098
## 19481 2021-02-19 Washington 53 336184 4886
## 19482 2021-02-19 West Virginia 54 129055 2248
## 19483 2021-02-19 Wisconsin 55 610974 6856
## 19484 2021-02-19 Wyoming 56 53683 662
## 19485 2021-02-20 Alabama 1 485986 9590
## 19486 2021-02-20 Alaska 2 56979 278
## 19487 2021-02-20 Arizona 4 807163 15480
## 19488 2021-02-20 Arkansas 5 315230 5348
## 19489 2021-02-20 California 6 3527411 49111
## 19490 2021-02-20 Colorado 8 422240 5984
## 19491 2021-02-20 Connecticut 9 273101 7523
## 19492 2021-02-20 Delaware 10 84531 1366
## 19493 2021-02-20 District of Columbia 11 39553 994
## 19494 2021-02-20 Florida 12 1863699 29812
## 19495 2021-02-20 Georgia 13 958998 16233
## 19496 2021-02-20 Guam 66 8685 131
## 19497 2021-02-20 Hawaii 15 27011 427
## 19498 2021-02-20 Idaho 16 169229 1829
## 19499 2021-02-20 Illinois 17 1175781 22426
## 19500 2021-02-20 Indiana 18 657848 12336
## 19501 2021-02-20 Iowa 19 332225 5336
## 19502 2021-02-20 Kansas 20 294010 4614
## 19503 2021-02-20 Kentucky 21 400011 4585
## 19504 2021-02-20 Louisiana 22 422287 9440
## 19505 2021-02-20 Maine 23 43367 658
## 19506 2021-02-20 Maryland 24 375919 7697
## 19507 2021-02-20 Massachusetts 25 567764 15779
## 19508 2021-02-20 Michigan 26 635359 16332
## 19509 2021-02-20 Minnesota 27 478225 6491
## 19510 2021-02-20 Mississippi 28 290242 6553
## 19511 2021-02-20 Missouri 29 519922 8151
## 19512 2021-02-20 Montana 30 98681 1342
## 19513 2021-02-20 Nebraska 31 199162 2169
## 19514 2021-02-20 Nevada 32 290742 4870
## 19515 2021-02-20 New Hampshire 33 73161 1153
## 19516 2021-02-20 New Jersey 34 764374 22834
## 19517 2021-02-20 New Mexico 35 182475 3612
## 19518 2021-02-20 New York 36 1585692 46233
## 19519 2021-02-20 North Carolina 37 841315 10930
## 19520 2021-02-20 North Dakota 38 99258 1467
## 19521 2021-02-20 Northern Mariana Islands 69 135 2
## 19522 2021-02-20 Ohio 39 952306 16749
## 19523 2021-02-20 Oklahoma 40 418318 4155
## 19524 2021-02-20 Oregon 41 152711 2159
## 19525 2021-02-20 Pennsylvania 42 916378 23615
## 19526 2021-02-20 Puerto Rico 72 132450 1957
## 19527 2021-02-20 Rhode Island 44 123145 2376
## 19528 2021-02-20 South Carolina 45 501277 8256
## 19529 2021-02-20 South Dakota 46 111165 1859
## 19530 2021-02-20 Tennessee 47 750628 11022
## 19531 2021-02-20 Texas 48 2590989 42202
## 19532 2021-02-20 Utah 49 366091 1842
## 19533 2021-02-20 Vermont 50 14359 196
## 19534 2021-02-20 Virgin Islands 78 2575 25
## 19535 2021-02-20 Virginia 51 561812 7197
## 19536 2021-02-20 Washington 53 336819 4886
## 19537 2021-02-20 West Virginia 54 129364 2254
## 19538 2021-02-20 Wisconsin 55 611789 6875
## 19539 2021-02-20 Wyoming 56 53683 662
## 19540 2021-02-21 Alabama 1 486843 9592
## 19541 2021-02-21 Alaska 2 56979 278
## 19542 2021-02-21 Arizona 4 808247 15505
## 19543 2021-02-21 Arkansas 5 315514 5357
## 19544 2021-02-21 California 6 3532057 49340
## 19545 2021-02-21 Colorado 8 423208 5989
## 19546 2021-02-21 Connecticut 9 273101 7523
## 19547 2021-02-21 Delaware 10 84732 1367
## 19548 2021-02-21 District of Columbia 11 39648 995
## 19549 2021-02-21 Florida 12 1868764 29905
## 19550 2021-02-21 Georgia 13 960697 16235
## 19551 2021-02-21 Guam 66 8689 131
## 19552 2021-02-21 Hawaii 15 27075 428
## 19553 2021-02-21 Idaho 16 169229 1829
## 19554 2021-02-21 Illinois 17 1177301 22466
## 19555 2021-02-21 Indiana 18 658730 12372
## 19556 2021-02-21 Iowa 19 332640 5336
## 19557 2021-02-21 Kansas 20 294010 4614
## 19558 2021-02-21 Kentucky 21 400952 4604
## 19559 2021-02-21 Louisiana 22 424176 9466
## 19560 2021-02-21 Maine 23 43497 658
## 19561 2021-02-21 Maryland 24 376537 7715
## 19562 2021-02-21 Massachusetts 25 569284 15826
## 19563 2021-02-21 Michigan 26 635369 16332
## 19564 2021-02-21 Minnesota 27 479104 6500
## 19565 2021-02-21 Mississippi 28 290632 6553
## 19566 2021-02-21 Missouri 29 520226 8151
## 19567 2021-02-21 Montana 30 98779 1343
## 19568 2021-02-21 Nebraska 31 199362 2169
## 19569 2021-02-21 Nevada 32 291024 4872
## 19570 2021-02-21 New Hampshire 33 73413 1154
## 19571 2021-02-21 New Jersey 34 766405 22858
## 19572 2021-02-21 New Mexico 35 182789 3626
## 19573 2021-02-21 New York 36 1591929 46346
## 19574 2021-02-21 North Carolina 37 843395 10957
## 19575 2021-02-21 North Dakota 38 99307 1468
## 19576 2021-02-21 Northern Mariana Islands 69 143 2
## 19577 2021-02-21 Ohio 39 953767 16816
## 19578 2021-02-21 Oklahoma 40 419354 4181
## 19579 2021-02-21 Oregon 41 152818 2159
## 19580 2021-02-21 Pennsylvania 42 918174 23640
## 19581 2021-02-21 Puerto Rico 72 132699 1979
## 19582 2021-02-21 Rhode Island 44 123145 2376
## 19583 2021-02-21 South Carolina 45 504149 8324
## 19584 2021-02-21 South Dakota 46 111304 1863
## 19585 2021-02-21 Tennessee 47 751663 11040
## 19586 2021-02-21 Texas 48 2597379 42321
## 19587 2021-02-21 Utah 49 366792 1852
## 19588 2021-02-21 Vermont 50 14493 197
## 19589 2021-02-21 Virgin Islands 78 2575 25
## 19590 2021-02-21 Virginia 51 564115 7331
## 19591 2021-02-21 Washington 53 336945 4886
## 19592 2021-02-21 West Virginia 54 129616 2261
## 19593 2021-02-21 Wisconsin 55 612240 6875
## 19594 2021-02-21 Wyoming 56 53795 662
## 19595 2021-02-22 Alabama 1 487520 9592
## 19596 2021-02-22 Alaska 2 57316 279
## 19597 2021-02-22 Arizona 4 809899 15502
## 19598 2021-02-22 Arkansas 5 315759 5363
## 19599 2021-02-22 California 6 3537033 49531
## 19600 2021-02-22 Colorado 8 424097 5990
## 19601 2021-02-22 Connecticut 9 275334 7562
## 19602 2021-02-22 Delaware 10 85090 1368
## 19603 2021-02-22 District of Columbia 11 39755 995
## 19604 2021-02-22 Florida 12 1872915 30064
## 19605 2021-02-22 Georgia 13 962215 16313
## 19606 2021-02-22 Guam 66 8696 131
## 19607 2021-02-22 Hawaii 15 27124 428
## 19608 2021-02-22 Idaho 16 169723 1828
## 19609 2021-02-22 Illinois 17 1178702 22506
## 19610 2021-02-22 Indiana 18 659547 12407
## 19611 2021-02-22 Iowa 19 333087 5374
## 19612 2021-02-22 Kansas 20 294873 4643
## 19613 2021-02-22 Kentucky 21 401579 4619
## 19614 2021-02-22 Louisiana 22 424644 9477
## 19615 2021-02-22 Maine 23 43594 658
## 19616 2021-02-22 Maryland 24 377148 7732
## 19617 2021-02-22 Massachusetts 25 570546 15853
## 19618 2021-02-22 Michigan 26 637100 16334
## 19619 2021-02-22 Minnesota 27 479659 6501
## 19620 2021-02-22 Mississippi 28 290874 6553
## 19621 2021-02-22 Missouri 29 521050 8167
## 19622 2021-02-22 Montana 30 98929 1342
## 19623 2021-02-22 Nebraska 31 199619 2171
## 19624 2021-02-22 Nevada 32 291198 4882
## 19625 2021-02-22 New Hampshire 33 73665 1154
## 19626 2021-02-22 New Jersey 34 769109 22874
## 19627 2021-02-22 New Mexico 35 183023 3637
## 19628 2021-02-22 New York 36 1598226 46454
## 19629 2021-02-22 North Carolina 37 846084 10976
## 19630 2021-02-22 North Dakota 38 99342 1468
## 19631 2021-02-22 Northern Mariana Islands 69 143 2
## 19632 2021-02-22 Ohio 39 955378 16874
## 19633 2021-02-22 Oklahoma 40 419853 4203
## 19634 2021-02-22 Oregon 41 153139 2166
## 19635 2021-02-22 Pennsylvania 42 920025 23657
## 19636 2021-02-22 Puerto Rico 72 132872 1983
## 19637 2021-02-22 Rhode Island 44 123980 2466
## 19638 2021-02-22 South Carolina 45 505589 8332
## 19639 2021-02-22 South Dakota 46 111334 1863
## 19640 2021-02-22 Tennessee 47 752816 11059
## 19641 2021-02-22 Texas 48 2604710 42484
## 19642 2021-02-22 Utah 49 367130 1853
## 19643 2021-02-22 Vermont 50 14608 198
## 19644 2021-02-22 Virgin Islands 78 2579 25
## 19645 2021-02-22 Virginia 51 565270 7486
## 19646 2021-02-22 Washington 53 338309 4924
## 19647 2021-02-22 West Virginia 54 129854 2263
## 19648 2021-02-22 Wisconsin 55 612713 6876
## 19649 2021-02-22 Wyoming 56 53900 662
## 19650 2021-02-23 Alabama 1 488973 9660
## 19651 2021-02-23 Alaska 2 57371 279
## 19652 2021-02-23 Arizona 4 811560 15651
## 19653 2021-02-23 Arkansas 5 316593 5377
## 19654 2021-02-23 California 6 3543293 49869
## 19655 2021-02-23 Colorado 8 425155 6003
## 19656 2021-02-23 Connecticut 9 276691 7572
## 19657 2021-02-23 Delaware 10 85228 1379
## 19658 2021-02-23 District of Columbia 11 39844 998
## 19659 2021-02-23 Florida 12 1878525 30212
## 19660 2021-02-23 Georgia 13 966131 16401
## 19661 2021-02-23 Guam 66 8696 131
## 19662 2021-02-23 Hawaii 15 27168 428
## 19663 2021-02-23 Idaho 16 170013 1842
## 19664 2021-02-23 Illinois 17 1180421 22528
## 19665 2021-02-23 Indiana 18 660229 12450
## 19666 2021-02-23 Iowa 19 333962 5400
## 19667 2021-02-23 Kansas 20 294885 4643
## 19668 2021-02-23 Kentucky 21 402943 4636
## 19669 2021-02-23 Louisiana 22 426048 9503
## 19670 2021-02-23 Maine 23 43736 660
## 19671 2021-02-23 Maryland 24 377810 7762
## 19672 2021-02-23 Massachusetts 25 571783 15883
## 19673 2021-02-23 Michigan 26 638824 16371
## 19674 2021-02-23 Minnesota 27 480159 6502
## 19675 2021-02-23 Mississippi 28 291222 6577
## 19676 2021-02-23 Missouri 29 521782 8284
## 19677 2021-02-23 Montana 30 99161 1347
## 19678 2021-02-23 Nebraska 31 199837 2172
## 19679 2021-02-23 Nevada 32 291698 4903
## 19680 2021-02-23 New Hampshire 33 73923 1155
## 19681 2021-02-23 New Jersey 34 772267 22978
## 19682 2021-02-23 New Mexico 35 183335 3646
## 19683 2021-02-23 New York 36 1605149 46562
## 19684 2021-02-23 North Carolina 37 847652 11007
## 19685 2021-02-23 North Dakota 38 99446 1469
## 19686 2021-02-23 Northern Mariana Islands 69 143 2
## 19687 2021-02-23 Ohio 39 958153 16972
## 19688 2021-02-23 Oklahoma 40 420212 4227
## 19689 2021-02-23 Oregon 41 153645 2171
## 19690 2021-02-23 Pennsylvania 42 922848 23749
## 19691 2021-02-23 Puerto Rico 72 133091 1986
## 19692 2021-02-23 Rhode Island 44 124262 2476
## 19693 2021-02-23 South Carolina 45 506912 8357
## 19694 2021-02-23 South Dakota 46 111546 1863
## 19695 2021-02-23 Tennessee 47 754161 11108
## 19696 2021-02-23 Texas 48 2614977 42728
## 19697 2021-02-23 Utah 49 367846 1865
## 19698 2021-02-23 Vermont 50 14691 199
## 19699 2021-02-23 Virgin Islands 78 2589 25
## 19700 2021-02-23 Virginia 51 567039 7658
## 19701 2021-02-23 Washington 53 339051 4947
## 19702 2021-02-23 West Virginia 54 130139 2274
## 19703 2021-02-23 Wisconsin 55 613427 6914
## 19704 2021-02-23 Wyoming 56 53944 671
## 19705 2021-02-24 Alabama 1 490220 9744
## 19706 2021-02-24 Alaska 2 57550 279
## 19707 2021-02-24 Arizona 4 812653 15693
## 19708 2021-02-24 Arkansas 5 317396 5387
## 19709 2021-02-24 California 6 3549145 50953
## 19710 2021-02-24 Colorado 8 426281 6012
## 19711 2021-02-24 Connecticut 9 278184 7595
## 19712 2021-02-24 Delaware 10 85506 1402
## 19713 2021-02-24 District of Columbia 11 39943 1001
## 19714 2021-02-24 Florida 12 1885653 30339
## 19715 2021-02-24 Georgia 13 969603 16532
## 19716 2021-02-24 Guam 66 8698 131
## 19717 2021-02-24 Hawaii 15 27211 432
## 19718 2021-02-24 Idaho 16 170351 1842
## 19719 2021-02-24 Illinois 17 1182402 22575
## 19720 2021-02-24 Indiana 18 661241 12467
## 19721 2021-02-24 Iowa 19 334665 5415
## 19722 2021-02-24 Kansas 20 295991 4724
## 19723 2021-02-24 Kentucky 21 404242 4686
## 19724 2021-02-24 Louisiana 22 426925 9528
## 19725 2021-02-24 Maine 23 43900 677
## 19726 2021-02-24 Maryland 24 378672 7789
## 19727 2021-02-24 Massachusetts 25 573885 15945
## 19728 2021-02-24 Michigan 26 640353 16380
## 19729 2021-02-24 Minnesota 27 480913 6511
## 19730 2021-02-24 Mississippi 28 291891 6605
## 19731 2021-02-24 Missouri 29 522611 8316
## 19732 2021-02-24 Montana 30 99363 1349
## 19733 2021-02-24 Nebraska 31 200260 2179
## 19734 2021-02-24 Nevada 32 292100 4922
## 19735 2021-02-24 New Hampshire 33 74258 1157
## 19736 2021-02-24 New Jersey 34 775385 23035
## 19737 2021-02-24 New Mexico 35 183781 3660
## 19738 2021-02-24 New York 36 1611288 46680
## 19739 2021-02-24 North Carolina 37 850960 11100
## 19740 2021-02-24 North Dakota 38 99561 1470
## 19741 2021-02-24 Northern Mariana Islands 69 143 2
## 19742 2021-02-24 Ohio 39 959995 17048
## 19743 2021-02-24 Oklahoma 40 421010 4264
## 19744 2021-02-24 Oregon 41 154069 2204
## 19745 2021-02-24 Pennsylvania 42 925662 23832
## 19746 2021-02-24 Puerto Rico 72 133134 2007
## 19747 2021-02-24 Rhode Island 44 124718 2487
## 19748 2021-02-24 South Carolina 45 509044 8398
## 19749 2021-02-24 South Dakota 46 111808 1864
## 19750 2021-02-24 Tennessee 47 755637 11175
## 19751 2021-02-24 Texas 48 2622573 43053
## 19752 2021-02-24 Utah 49 368658 1879
## 19753 2021-02-24 Vermont 50 14768 201
## 19754 2021-02-24 Virgin Islands 78 2623 25
## 19755 2021-02-24 Virginia 51 568946 7807
## 19756 2021-02-24 Washington 53 339913 4988
## 19757 2021-02-24 West Virginia 54 130382 2285
## 19758 2021-02-24 Wisconsin 55 614271 6940
## 19759 2021-02-24 Wyoming 56 53988 671
## 19760 2021-02-25 Alabama 1 491110 9831
## 19761 2021-02-25 Alaska 2 57735 279
## 19762 2021-02-25 Arizona 4 813898 15821
## 19763 2021-02-25 Arkansas 5 318122 5397
## 19764 2021-02-25 California 6 3554779 51385
## 19765 2021-02-25 Colorado 8 427499 6019
## 19766 2021-02-25 Connecticut 9 279159 7614
## 19767 2021-02-25 Delaware 10 85801 1406
## 19768 2021-02-25 District of Columbia 11 40122 1005
## 19769 2021-02-25 Florida 12 1892293 30477
## 19770 2021-02-25 Georgia 13 972984 16663
## 19771 2021-02-25 Guam 66 8699 131
## 19772 2021-02-25 Hawaii 15 27247 432
## 19773 2021-02-25 Idaho 16 170735 1855
## 19774 2021-02-25 Illinois 17 1184374 22607
## 19775 2021-02-25 Indiana 18 662332 12494
## 19776 2021-02-25 Iowa 19 335223 5438
## 19777 2021-02-25 Kansas 20 296047 4724
## 19778 2021-02-25 Kentucky 21 405637 4722
## 19779 2021-02-25 Louisiana 22 427689 9561
## 19780 2021-02-25 Maine 23 44117 701
## 19781 2021-02-25 Maryland 24 379648 7805
## 19782 2021-02-25 Massachusetts 25 575993 15978
## 19783 2021-02-25 Michigan 26 641925 16428
## 19784 2021-02-25 Minnesota 27 481899 6518
## 19785 2021-02-25 Mississippi 28 292811 6613
## 19786 2021-02-25 Missouri 29 523311 8355
## 19787 2021-02-25 Montana 30 99566 1351
## 19788 2021-02-25 Nebraska 31 200663 2183
## 19789 2021-02-25 Nevada 32 292689 4934
## 19790 2021-02-25 New Hampshire 33 74568 1163
## 19791 2021-02-25 New Jersey 34 778960 23105
## 19792 2021-02-25 New Mexico 35 184080 3673
## 19793 2021-02-25 New York 36 1620181 46790
## 19794 2021-02-25 North Carolina 37 854394 11162
## 19795 2021-02-25 North Dakota 38 99651 1471
## 19796 2021-02-25 Northern Mariana Islands 69 143 2
## 19797 2021-02-25 Ohio 39 962404 17128
## 19798 2021-02-25 Oklahoma 40 422156 4302
## 19799 2021-02-25 Oregon 41 154581 2214
## 19800 2021-02-25 Pennsylvania 42 928029 23910
## 19801 2021-02-25 Puerto Rico 72 133234 2016
## 19802 2021-02-25 Rhode Island 44 125185 2496
## 19803 2021-02-25 South Carolina 45 511546 8443
## 19804 2021-02-25 South Dakota 46 111964 1872
## 19805 2021-02-25 Tennessee 47 757505 11228
## 19806 2021-02-25 Texas 48 2630384 43350
## 19807 2021-02-25 Utah 49 369490 1890
## 19808 2021-02-25 Vermont 50 14840 203
## 19809 2021-02-25 Virgin Islands 78 2636 25
## 19810 2021-02-25 Virginia 51 570982 7963
## 19811 2021-02-25 Washington 53 340997 5015
## 19812 2021-02-25 West Virginia 54 130813 2290
## 19813 2021-02-25 Wisconsin 55 615233 6998
## 19814 2021-02-25 Wyoming 56 54202 671
## 19815 2021-02-26 Alabama 1 491849 9869
## 19816 2021-02-26 Alaska 2 57846 279
## 19817 2021-02-26 Arizona 4 815345 15897
## 19818 2021-02-26 Arkansas 5 318638 5407
## 19819 2021-02-26 California 6 3561681 51794
## 19820 2021-02-26 Colorado 8 428475 6023
## 19821 2021-02-26 Connecticut 9 279946 7622
## 19822 2021-02-26 Delaware 10 86098 1418
## 19823 2021-02-26 District of Columbia 11 40284 1009
## 19824 2021-02-26 Florida 12 1898215 30623
## 19825 2021-02-26 Georgia 13 976400 16682
## 19826 2021-02-26 Guam 66 8703 131
## 19827 2021-02-26 Hawaii 15 27320 434
## 19828 2021-02-26 Idaho 16 171071 1862
## 19829 2021-02-26 Illinois 17 1186993 22675
## 19830 2021-02-26 Indiana 18 663282 12531
## 19831 2021-02-26 Iowa 19 335840 5463
## 19832 2021-02-26 Kansas 20 296798 4735
## 19833 2021-02-26 Kentucky 21 406795 4746
## 19834 2021-02-26 Louisiana 22 428592 9587
## 19835 2021-02-26 Maine 23 44295 701
## 19836 2021-02-26 Maryland 24 380618 7838
## 19837 2021-02-26 Massachusetts 25 577980 16024
## 19838 2021-02-26 Michigan 26 643197 16429
## 19839 2021-02-26 Minnesota 27 483046 6530
## 19840 2021-02-26 Mississippi 28 293542 6638
## 19841 2021-02-26 Missouri 29 523958 8371
## 19842 2021-02-26 Montana 30 99732 1357
## 19843 2021-02-26 Nebraska 31 200866 2195
## 19844 2021-02-26 Nevada 32 293152 4942
## 19845 2021-02-26 New Hampshire 33 74893 1167
## 19846 2021-02-26 New Jersey 34 782829 23192
## 19847 2021-02-26 New Mexico 35 184736 3687
## 19848 2021-02-26 New York 36 1628255 46914
## 19849 2021-02-26 North Carolina 37 857203 11216
## 19850 2021-02-26 North Dakota 38 99741 1472
## 19851 2021-02-26 Northern Mariana Islands 69 143 2
## 19852 2021-02-26 Ohio 39 964380 17185
## 19853 2021-02-26 Oklahoma 40 423023 4320
## 19854 2021-02-26 Oregon 41 154902 2216
## 19855 2021-02-26 Pennsylvania 42 931099 23979
## 19856 2021-02-26 Puerto Rico 72 133475 2023
## 19857 2021-02-26 Rhode Island 44 125622 2502
## 19858 2021-02-26 South Carolina 45 513295 8477
## 19859 2021-02-26 South Dakota 46 112107 1879
## 19860 2021-02-26 Tennessee 47 759124 11284
## 19861 2021-02-26 Texas 48 2641266 43633
## 19862 2021-02-26 Utah 49 370140 1907
## 19863 2021-02-26 Vermont 50 14963 204
## 19864 2021-02-26 Virgin Islands 78 2636 25
## 19865 2021-02-26 Virginia 51 572639 8197
## 19866 2021-02-26 Washington 53 341941 5024
## 19867 2021-02-26 West Virginia 54 131234 2291
## 19868 2021-02-26 Wisconsin 55 616029 7004
## 19869 2021-02-26 Wyoming 56 54350 671
## 19870 2021-02-27 Alabama 1 492683 9930
## 19871 2021-02-27 Alaska 2 57846 279
## 19872 2021-02-27 Arizona 4 816334 15967
## 19873 2021-02-27 Arkansas 5 319195 5417
## 19874 2021-02-27 California 6 3566089 51979
## 19875 2021-02-27 Colorado 8 430129 6038
## 19876 2021-02-27 Connecticut 9 279946 7622
## 19877 2021-02-27 Delaware 10 86517 1418
## 19878 2021-02-27 District of Columbia 11 40478 1010
## 19879 2021-02-27 Florida 12 1903674 30733
## 19880 2021-02-27 Georgia 13 979683 16756
## 19881 2021-02-27 Guam 66 8704 131
## 19882 2021-02-27 Hawaii 15 27419 436
## 19883 2021-02-27 Idaho 16 171209 1862
## 19884 2021-02-27 Illinois 17 1188732 22710
## 19885 2021-02-27 Indiana 18 664149 12556
## 19886 2021-02-27 Iowa 19 336270 5470
## 19887 2021-02-27 Kansas 20 296798 4735
## 19888 2021-02-27 Kentucky 21 407745 4776
## 19889 2021-02-27 Louisiana 22 428592 9587
## 19890 2021-02-27 Maine 23 44492 702
## 19891 2021-02-27 Maryland 24 381454 7856
## 19892 2021-02-27 Massachusetts 25 579680 16067
## 19893 2021-02-27 Michigan 26 644528 16498
## 19894 2021-02-27 Minnesota 27 483858 6543
## 19895 2021-02-27 Mississippi 28 294091 6669
## 19896 2021-02-27 Missouri 29 524325 8383
## 19897 2021-02-27 Montana 30 99920 1357
## 19898 2021-02-27 Nebraska 31 201105 2199
## 19899 2021-02-27 Nevada 32 293529 4957
## 19900 2021-02-27 New Hampshire 33 75166 1170
## 19901 2021-02-27 New Jersey 34 786964 23238
## 19902 2021-02-27 New Mexico 35 184888 3702
## 19903 2021-02-27 New York 36 1636297 47025
## 19904 2021-02-27 North Carolina 37 859527 11240
## 19905 2021-02-27 North Dakota 38 99810 1475
## 19906 2021-02-27 Northern Mariana Islands 69 143 2
## 19907 2021-02-27 Ohio 39 966154 17239
## 19908 2021-02-27 Oklahoma 40 423802 4379
## 19909 2021-02-27 Oregon 41 155315 2218
## 19910 2021-02-27 Pennsylvania 42 934113 23979
## 19911 2021-02-27 Puerto Rico 72 133659 2032
## 19912 2021-02-27 Rhode Island 44 125622 2502
## 19913 2021-02-27 South Carolina 45 515072 8498
## 19914 2021-02-27 South Dakota 46 112293 1886
## 19915 2021-02-27 Tennessee 47 760289 11299
## 19916 2021-02-27 Texas 48 2646681 43772
## 19917 2021-02-27 Utah 49 370826 1929
## 19918 2021-02-27 Vermont 50 15098 204
## 19919 2021-02-27 Virgin Islands 78 2646 25
## 19920 2021-02-27 Virginia 51 574314 8382
## 19921 2021-02-27 Washington 53 342574 5024
## 19922 2021-02-27 West Virginia 54 131580 2297
## 19923 2021-02-27 Wisconsin 55 616899 7019
## 19924 2021-02-27 Wyoming 56 54350 671
## 19925 2021-02-28 Alabama 1 493252 9929
## 19926 2021-02-28 Alaska 2 57846 279
## 19927 2021-02-28 Arizona 4 817232 15980
## 19928 2021-02-28 Arkansas 5 322415 5243
## 19929 2021-02-28 California 6 3569578 52213
## 19930 2021-02-28 Colorado 8 430970 6045
## 19931 2021-02-28 Connecticut 9 279946 7622
## 19932 2021-02-28 Delaware 10 86799 1422
## 19933 2021-02-28 District of Columbia 11 40598 1017
## 19934 2021-02-28 Florida 12 1909213 30851
## 19935 2021-02-28 Georgia 13 981844 16757
## 19936 2021-02-28 Guam 66 8705 132
## 19937 2021-02-28 Hawaii 15 27473 436
## 19938 2021-02-28 Idaho 16 171209 1862
## 19939 2021-02-28 Illinois 17 1189922 22735
## 19940 2021-02-28 Indiana 18 664880 12573
## 19941 2021-02-28 Iowa 19 336455 5470
## 19942 2021-02-28 Kansas 20 296798 4735
## 19943 2021-02-28 Kentucky 21 408392 4786
## 19944 2021-02-28 Louisiana 22 430100 9608
## 19945 2021-02-28 Maine 23 44634 703
## 19946 2021-02-28 Maryland 24 382281 7869
## 19947 2021-02-28 Massachusetts 25 581148 16118
## 19948 2021-02-28 Michigan 26 644564 16498
## 19949 2021-02-28 Minnesota 27 484662 6551
## 19950 2021-02-28 Mississippi 28 294795 6681
## 19951 2021-02-28 Missouri 29 524600 8382
## 19952 2021-02-28 Montana 30 99999 1358
## 19953 2021-02-28 Nebraska 31 201298 2199
## 19954 2021-02-28 Nevada 32 293815 4957
## 19955 2021-02-28 New Hampshire 33 75424 1170
## 19956 2021-02-28 New Jersey 34 789354 23252
## 19957 2021-02-28 New Mexico 35 185132 3716
## 19958 2021-02-28 New York 36 1644124 47143
## 19959 2021-02-28 North Carolina 37 859527 11241
## 19960 2021-02-28 North Dakota 38 99839 1475
## 19961 2021-02-28 Northern Mariana Islands 69 143 2
## 19962 2021-02-28 Ohio 39 967422 17299
## 19963 2021-02-28 Oklahoma 40 424508 4428
## 19964 2021-02-28 Oregon 41 155597 2218
## 19965 2021-02-28 Pennsylvania 42 935911 24056
## 19966 2021-02-28 Puerto Rico 72 133912 2036
## 19967 2021-02-28 Rhode Island 44 125622 2502
## 19968 2021-02-28 South Carolina 45 516823 8546
## 19969 2021-02-28 South Dakota 46 112427 1888
## 19970 2021-02-28 Tennessee 47 761232 11317
## 19971 2021-02-28 Texas 48 2650283 43949
## 19972 2021-02-28 Utah 49 371291 1935
## 19973 2021-02-28 Vermont 50 15198 204
## 19974 2021-02-28 Virgin Islands 78 2646 25
## 19975 2021-02-28 Virginia 51 576050 8552
## 19976 2021-02-28 Washington 53 342644 5024
## 19977 2021-02-28 West Virginia 54 131855 2300
## 19978 2021-02-28 Wisconsin 55 617380 7019
## 19979 2021-02-28 Wyoming 56 54394 671
## 19980 2021-03-01 Alabama 1 493769 9931
## 19981 2021-03-01 Alaska 2 58229 289
## 19982 2021-03-01 Arizona 4 818268 15979
## 19983 2021-03-01 Arkansas 5 322509 5250
## 19984 2021-03-01 California 6 3573775 52487
## 19985 2021-03-01 Colorado 8 432186 6046
## 19986 2021-03-01 Connecticut 9 282626 7651
## 19987 2021-03-01 Delaware 10 87080 1422
## 19988 2021-03-01 District of Columbia 11 40684 1019
## 19989 2021-03-01 Florida 12 1910913 30998
## 19990 2021-03-01 Georgia 13 983879 16834
## 19991 2021-03-01 Guam 66 8706 132
## 19992 2021-03-01 Hawaii 15 27499 436
## 19993 2021-03-01 Idaho 16 171618 1869
## 19994 2021-03-01 Illinois 17 1191207 22759
## 19995 2021-03-01 Indiana 18 665422 12595
## 19996 2021-03-01 Iowa 19 336890 5472
## 19997 2021-03-01 Kansas 20 297436 4743
## 19998 2021-03-01 Kentucky 21 408854 4802
## 19999 2021-03-01 Louisiana 22 430504 9628
## [ reached 'max' / getOption("max.print") -- omitted 41943 rows ]
names(df)
## [1] "date" "state" "fips" "cases" "deaths"
str(df)
## 'data.frame': 61942 obs. of 5 variables:
## $ date : chr "2020-01-21" "2020-01-22" "2020-01-23" "2020-01-24" ...
## $ state : chr "Washington" "Washington" "Washington" "Illinois" ...
## $ fips : int 53 53 53 17 53 6 17 53 4 6 ...
## $ cases : int 1 1 1 1 1 1 1 1 1 2 ...
## $ deaths: int 0 0 0 0 0 0 0 0 0 0 ...
#The data have 5 columns and 61,942 rows.
#There are no missing values.
sum(is.na(df))
## [1] 0
colSums(is.na(df))
## date state fips cases deaths
## 0 0 0 0 0
colMeans(is.na(df))
## date state fips cases deaths
## 0 0 0 0 0
date column. Change the
date columns to date type using the
as.Date function. Show the new class of the
date column.class(df$date)
## [1] "character"
#The class of the data column is character.
df$date = as.Date(df$date)
class(df$date)
## [1] "Date"
names(df) <- c('Date', 'State', 'Flips', 'Cases', 'Deaths')
names(df)
## [1] "Date" "State" "Flips" "Cases" "Deaths"
mean(df$Cases, na.rm=TRUE)
## [1] 889830.1
#The average number of cases per day is 889830.1
max(df$Cases, na.rm=TRUE)
## [1] 12169158
#The maximum number of cases a day is 12169158
length(table(df$State))
## [1] 56
#There are 56 states in the data.
weekdays to store the weekday for
each rows.df$weekdays <- weekdays(df$Date)
df$weekdays
## [1] "Tuesday" "Wednesday" "Thursday" "Friday" "Friday" "Saturday"
## [7] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [19] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [31] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [49] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [55] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [61] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [67] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [73] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [79] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [85] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [91] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [97] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [103] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [109] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [115] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [121] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [127] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [133] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [139] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [145] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [151] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [157] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [163] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [169] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [175] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [181] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [187] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [193] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [199] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [205] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [211] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [217] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [223] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [229] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [235] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [241] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [247] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [253] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [259] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [265] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [271] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [277] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [283] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [289] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [295] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [301] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [307] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [313] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [319] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [325] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [331] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [337] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [343] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [349] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [355] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [361] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [367] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [373] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [379] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [385] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [391] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [397] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [403] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [409] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [415] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [421] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [427] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [433] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [439] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [445] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [451] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [457] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [463] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [469] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [475] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [481] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [487] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [493] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [499] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [505] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [511] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [517] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [523] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [529] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [535] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [541] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [547] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [553] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [559] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [565] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [571] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [577] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [583] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [589] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [595] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [601] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [607] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [613] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [619] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [625] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [631] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [637] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [643] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [649] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [655] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [661] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [667] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [673] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [679] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [685] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [691] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [697] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [703] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [709] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [715] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [721] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [727] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [733] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [739] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [745] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [751] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [757] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [763] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [769] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [775] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [781] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [787] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [793] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [799] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [805] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [811] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [817] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [823] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [829] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [835] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [841] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [847] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [853] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [859] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [865] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [871] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [877] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [883] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [889] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [895] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [901] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [907] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [913] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [919] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [925] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [931] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [937] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [943] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [949] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [955] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [961] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [967] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [973] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [979] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [985] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [991] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [997] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1003] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1009] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [1015] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1021] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1027] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1033] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1039] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1045] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1051] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1057] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1063] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [1069] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1075] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1081] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1087] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1093] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1099] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1105] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1111] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1117] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [1123] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1129] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1135] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1141] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1147] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1153] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1159] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1165] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1171] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [1177] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1183] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1189] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1195] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1201] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1207] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1213] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1219] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1225] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [1231] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1237] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1243] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1249] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1255] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1261] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1267] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1273] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1279] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [1285] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1291] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1297] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1303] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1309] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1315] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1321] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1327] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1333] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [1339] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1345] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1351] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1357] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1363] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1369] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1375] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1381] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1387] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [1393] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1399] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1405] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1411] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1417] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1423] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1429] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1435] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1441] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [1447] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1453] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1459] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1465] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1471] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1477] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1483] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1489] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1495] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [1501] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1507] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1513] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1519] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1525] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1531] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1537] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1543] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1549] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1555] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1561] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1567] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1573] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1579] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1585] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1591] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1597] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1603] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1609] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1615] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1621] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1627] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1633] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1639] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1645] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1651] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1657] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1663] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1669] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1675] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1681] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1687] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1693] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1699] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1705] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1711] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [1717] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [1723] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1729] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1735] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1741] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1747] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1753] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1759] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1765] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [1771] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [1777] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1783] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1789] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1795] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1801] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1807] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1813] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1819] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [1825] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [1831] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1837] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1843] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1849] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1855] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1861] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1867] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1873] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1879] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [1885] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1891] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1897] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1903] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1909] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1915] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1921] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1927] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1933] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [1939] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1945] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1951] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1957] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1963] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1969] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1975] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1981] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1987] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [1993] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [1999] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2005] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2011] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2017] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2023] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2029] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2035] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2041] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2047] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [2053] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2059] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2065] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2071] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2077] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2083] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2089] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2095] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2101] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [2107] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2113] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2119] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2125] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2131] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2137] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2143] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2149] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2155] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [2161] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2167] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2173] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2179] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2185] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2191] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2197] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2203] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2209] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2215] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2221] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2227] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2233] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2239] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2245] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2251] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2257] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2263] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2269] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2275] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2281] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2287] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2293] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2299] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2305] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2311] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2317] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2323] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2329] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2335] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2341] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2347] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2353] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2359] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2365] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2371] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2377] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [2383] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2389] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2395] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2401] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2407] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2413] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2419] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2425] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2431] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [2437] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2443] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2449] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2455] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2461] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2467] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2473] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2479] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2485] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [2491] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2497] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2503] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2509] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2515] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2521] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2527] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2533] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2539] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2545] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2551] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2557] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2563] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2569] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2575] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2581] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2587] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2593] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2599] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2605] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2611] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2617] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2623] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2629] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2635] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2641] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2647] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2653] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [2659] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2665] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2671] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2677] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2683] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2689] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2695] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2701] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [2707] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [2713] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2719] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2725] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2731] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2737] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2743] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2749] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2755] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [2761] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [2767] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2773] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2779] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2785] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2791] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2797] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2803] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2809] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [2815] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [2821] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2827] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2833] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2839] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2845] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2851] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2857] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2863] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2869] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [2875] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2881] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2887] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2893] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2899] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2905] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2911] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2917] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2923] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [2929] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2935] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2941] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2947] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2953] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2959] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2965] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2971] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2977] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [2983] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2989] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [2995] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3001] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3007] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3013] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3019] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3025] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3031] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3037] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [3043] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3049] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3055] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3061] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3067] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3073] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3079] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3085] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3091] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [3097] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3103] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3109] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3115] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3121] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3127] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3133] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3139] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3145] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [3151] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3157] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3163] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3169] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3175] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3181] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3187] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3193] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3199] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3205] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3211] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3217] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3223] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3229] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3235] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3241] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3247] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3253] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3259] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3265] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3271] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3277] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3283] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3289] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3295] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3301] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3307] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3313] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3319] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3325] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3331] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3337] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3343] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3349] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3355] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3361] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3367] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [3373] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3379] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3385] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3391] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3397] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3403] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3409] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3415] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3421] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [3427] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3433] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3439] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3445] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3451] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3457] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3463] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3469] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3475] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [3481] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3487] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3493] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3499] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3505] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3511] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3517] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3523] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3529] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3535] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3541] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3547] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3553] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3559] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3565] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3571] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3577] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3583] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3589] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3595] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3601] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3607] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3613] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3619] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3625] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3631] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3637] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3643] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [3649] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3655] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3661] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3667] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3673] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3679] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3685] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3691] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [3697] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [3703] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3709] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3715] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3721] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3727] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3733] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3739] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3745] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [3751] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [3757] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3763] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3769] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3775] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3781] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3787] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3793] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3799] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [3805] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [3811] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3817] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3823] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3829] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3835] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3841] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3847] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3853] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3859] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [3865] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3871] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3877] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3883] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3889] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3895] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3901] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3907] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3913] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [3919] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3925] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3931] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3937] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3943] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3949] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3955] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3961] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3967] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [3973] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3979] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3985] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3991] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [3997] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4003] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4009] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4015] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4021] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4027] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [4033] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4039] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4045] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4051] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4057] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4063] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4069] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4075] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4081] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [4087] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4093] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4099] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4105] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4111] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4117] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4123] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4129] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4135] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [4141] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4147] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4153] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4159] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4165] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4171] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4177] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4183] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4189] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4195] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4201] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4207] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4213] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4219] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4225] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4231] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4237] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4243] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4249] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4255] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4261] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4267] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4273] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4279] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4285] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4291] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4297] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4303] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4309] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4315] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4321] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4327] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4333] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4339] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4345] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4351] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4357] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [4363] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4369] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4375] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4381] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4387] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4393] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4399] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4405] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4411] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [4417] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4423] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4429] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4435] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4441] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4447] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4453] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4459] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4465] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [4471] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4477] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4483] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4489] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4495] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4501] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4507] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4513] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4519] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4525] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4531] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4537] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4543] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4549] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4555] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4561] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4567] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4573] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4579] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4585] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4591] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4597] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4603] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4609] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4615] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4621] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4627] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4633] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4639] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4645] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4651] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4657] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4663] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4669] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4675] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4681] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [4687] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [4693] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4699] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4705] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4711] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4717] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4723] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4729] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4735] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [4741] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [4747] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4753] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4759] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4765] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4771] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4777] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4783] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4789] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [4795] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [4801] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4807] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4813] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4819] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4825] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4831] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4837] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4843] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4849] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [4855] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4861] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4867] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4873] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4879] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4885] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4891] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4897] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4903] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [4909] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4915] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4921] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4927] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4933] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4939] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4945] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4951] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4957] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [4963] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [4969] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4975] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4981] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4987] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4993] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [4999] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5005] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5011] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5017] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [5023] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5029] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5035] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5041] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5047] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5053] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5059] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5065] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5071] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [5077] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5083] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5089] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5095] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5101] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5107] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5113] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5119] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5125] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [5131] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5137] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5143] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5149] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5155] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5161] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5167] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5173] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5179] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5185] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5191] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5197] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5203] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5209] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5215] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5221] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5227] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5233] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5239] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5245] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5251] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5257] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5263] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5269] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5275] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5281] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5287] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5293] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5299] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5305] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5311] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5317] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5323] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5329] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5335] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5341] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5347] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [5353] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5359] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5365] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5371] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5377] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5383] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5389] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5395] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5401] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [5407] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5413] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5419] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5425] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5431] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5437] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5443] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5449] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5455] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [5461] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5467] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5473] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5479] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5485] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5491] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5497] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5503] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5509] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5515] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5521] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5527] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5533] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5539] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5545] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5551] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5557] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5563] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5569] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5575] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5581] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5587] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5593] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5599] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5605] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5611] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5617] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5623] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5629] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5635] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5641] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5647] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5653] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5659] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5665] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5671] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [5677] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [5683] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5689] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5695] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5701] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5707] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5713] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5719] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5725] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [5731] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [5737] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5743] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5749] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5755] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5761] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5767] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5773] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5779] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [5785] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [5791] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5797] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5803] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5809] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5815] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5821] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5827] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5833] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5839] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [5845] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5851] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5857] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5863] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5869] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5875] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5881] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5887] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5893] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [5899] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5905] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5911] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5917] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5923] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5929] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5935] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5941] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5947] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [5953] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [5959] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5965] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5971] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5977] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5983] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5989] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [5995] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6001] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6007] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [6013] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6019] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6025] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6031] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6037] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6043] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6049] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6055] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6061] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [6067] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6073] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6079] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6085] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6091] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6097] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6103] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6109] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6115] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [6121] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6127] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6133] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6139] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6145] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6151] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6157] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6163] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6169] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6175] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6181] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6187] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6193] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6199] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6205] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6211] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6217] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6223] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6229] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6235] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6241] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6247] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6253] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6259] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6265] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6271] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6277] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6283] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6289] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6295] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6301] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6307] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6313] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6319] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6325] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6331] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6337] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [6343] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6349] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6355] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6361] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6367] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6373] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6379] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6385] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6391] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [6397] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6403] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6409] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6415] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6421] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6427] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6433] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6439] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6445] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [6451] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6457] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6463] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6469] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6475] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6481] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6487] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6493] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6499] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6505] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6511] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6517] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6523] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6529] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6535] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6541] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6547] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6553] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6559] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6565] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6571] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6577] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6583] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6589] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6595] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6601] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6607] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6613] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6619] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6625] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6631] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6637] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6643] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6649] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6655] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6661] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [6667] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [6673] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6679] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6685] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6691] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6697] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6703] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6709] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6715] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [6721] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [6727] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6733] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6739] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6745] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6751] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6757] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6763] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6769] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [6775] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [6781] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6787] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6793] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6799] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6805] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6811] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6817] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6823] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6829] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [6835] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6841] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6847] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6853] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6859] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6865] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6871] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6877] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6883] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [6889] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6895] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6901] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6907] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6913] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6919] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6925] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6931] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6937] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [6943] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6949] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6955] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6961] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6967] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6973] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6979] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6985] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6991] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [6997] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [7003] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7009] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7015] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7021] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7027] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7033] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7039] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7045] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7051] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [7057] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7063] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7069] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7075] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7081] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7087] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7093] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7099] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7105] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [7111] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7117] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7123] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7129] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7135] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7141] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7147] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7153] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7159] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7165] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7171] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7177] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7183] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7189] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7195] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7201] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7207] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7213] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7219] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7225] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7231] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7237] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7243] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7249] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7255] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7261] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7267] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7273] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [7279] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7285] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7291] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7297] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7303] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7309] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7315] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7321] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7327] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [7333] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7339] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7345] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7351] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7357] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7363] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7369] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7375] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7381] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [7387] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7393] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7399] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7405] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7411] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7417] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7423] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7429] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7435] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [7441] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7447] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7453] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7459] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7465] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7471] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7477] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7483] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7489] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7495] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7501] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7507] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7513] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7519] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7525] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7531] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7537] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7543] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7549] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7555] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7561] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7567] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7573] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7579] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7585] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7591] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7597] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7603] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7609] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7615] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7621] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7627] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7633] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7639] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7645] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7651] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7657] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [7663] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7669] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7675] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7681] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7687] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7693] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7699] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7705] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [7711] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [7717] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7723] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7729] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7735] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7741] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7747] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7753] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7759] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [7765] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [7771] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7777] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7783] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7789] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7795] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7801] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7807] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7813] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7819] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [7825] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7831] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7837] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7843] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7849] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7855] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7861] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7867] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7873] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [7879] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7885] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7891] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7897] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7903] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7909] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7915] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7921] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7927] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [7933] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7939] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7945] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7951] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7957] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7963] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7969] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7975] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7981] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [7987] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [7993] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [7999] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8005] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8011] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8017] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8023] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8029] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8035] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8041] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [8047] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8053] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8059] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8065] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8071] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8077] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8083] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8089] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8095] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [8101] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8107] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8113] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8119] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8125] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8131] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8137] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8143] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8149] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8155] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8161] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8167] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8173] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8179] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8185] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8191] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8197] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8203] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8209] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8215] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8221] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8227] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8233] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8239] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8245] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8251] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8257] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8263] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [8269] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8275] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8281] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8287] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8293] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8299] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8305] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8311] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8317] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [8323] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8329] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8335] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8341] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8347] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8353] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8359] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8365] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8371] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [8377] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8383] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8389] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8395] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8401] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8407] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8413] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8419] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8425] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [8431] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8437] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8443] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8449] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8455] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8461] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8467] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8473] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8479] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8485] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8491] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8497] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8503] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8509] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8515] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8521] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8527] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8533] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8539] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8545] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8551] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8557] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8563] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8569] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8575] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8581] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8587] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8593] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8599] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8605] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8611] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8617] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8623] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8629] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8635] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8641] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8647] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [8653] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8659] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8665] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8671] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8677] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8683] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8689] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8695] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [8701] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [8707] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8713] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8719] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8725] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8731] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8737] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8743] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8749] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [8755] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [8761] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8767] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8773] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8779] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8785] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8791] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8797] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8803] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8809] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [8815] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8821] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8827] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8833] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8839] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8845] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8851] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8857] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8863] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [8869] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8875] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8881] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8887] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8893] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8899] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8905] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8911] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8917] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [8923] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8929] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8935] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8941] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8947] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8953] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8959] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8965] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8971] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [8977] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [8983] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8989] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [8995] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9001] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9007] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9013] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9019] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9025] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9031] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [9037] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9043] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9049] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9055] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9061] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9067] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9073] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9079] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9085] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [9091] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9097] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9103] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9109] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9115] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9121] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9127] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9133] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9139] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9145] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9151] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9157] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9163] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9169] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9175] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9181] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9187] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9193] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9199] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9205] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9211] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9217] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9223] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9229] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9235] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9241] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9247] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9253] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9259] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9265] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9271] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9277] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9283] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9289] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9295] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9301] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9307] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [9313] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9319] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9325] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9331] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9337] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9343] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9349] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9355] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9361] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [9367] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9373] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9379] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9385] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9391] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9397] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9403] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9409] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9415] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [9421] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9427] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9433] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9439] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9445] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9451] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9457] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9463] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9469] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9475] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9481] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9487] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9493] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9499] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9505] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9511] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9517] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9523] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9529] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9535] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9541] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9547] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9553] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9559] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9565] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9571] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9577] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9583] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [9589] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9595] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9601] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9607] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9613] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9619] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9625] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9631] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9637] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [9643] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9649] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9655] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9661] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9667] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9673] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9679] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9685] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [9691] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [9697] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9703] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9709] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9715] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9721] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9727] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9733] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9739] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [9745] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [9751] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9757] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9763] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9769] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9775] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9781] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9787] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9793] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9799] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [9805] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9811] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9817] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9823] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9829] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9835] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9841] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9847] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9853] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [9859] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9865] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9871] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9877] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9883] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9889] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9895] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9901] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9907] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [9913] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9919] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9925] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9931] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9937] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9943] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9949] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9955] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9961] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [9967] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [9973] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9979] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9985] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9991] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [9997] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10003] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10009] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10015] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10021] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [10027] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10033] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10039] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10045] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10051] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10057] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10063] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10069] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10075] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [10081] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10087] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10093] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10099] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10105] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10111] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10117] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10123] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10129] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10135] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10141] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10147] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10153] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10159] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10165] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10171] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10177] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10183] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10189] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10195] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10201] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10207] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10213] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10219] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10225] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10231] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10237] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10243] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10249] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10255] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10261] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10267] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10273] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10279] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10285] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10291] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10297] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [10303] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10309] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10315] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10321] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10327] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10333] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10339] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10345] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10351] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [10357] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10363] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10369] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10375] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10381] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10387] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10393] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10399] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10405] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [10411] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10417] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10423] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10429] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10435] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10441] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10447] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10453] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10459] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10465] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10471] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10477] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10483] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10489] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10495] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10501] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10507] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10513] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10519] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10525] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10531] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10537] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10543] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10549] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10555] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10561] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10567] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10573] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [10579] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10585] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10591] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10597] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10603] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10609] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10615] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10621] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10627] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [10633] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10639] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10645] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10651] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10657] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10663] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10669] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10675] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [10681] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [10687] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10693] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10699] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10705] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10711] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10717] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10723] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10729] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [10735] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [10741] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10747] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10753] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10759] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10765] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10771] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10777] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10783] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10789] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [10795] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10801] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10807] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10813] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10819] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10825] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10831] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10837] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10843] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [10849] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10855] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10861] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10867] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10873] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10879] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10885] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10891] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10897] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [10903] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10909] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10915] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10921] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10927] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10933] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10939] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10945] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10951] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [10957] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [10963] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10969] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10975] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10981] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10987] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10993] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [10999] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11005] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11011] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [11017] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11023] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11029] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11035] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11041] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11047] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11053] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11059] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11065] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [11071] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11077] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11083] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11089] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11095] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11101] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11107] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11113] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11119] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11125] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11131] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11137] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11143] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11149] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11155] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11161] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11167] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11173] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11179] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11185] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11191] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11197] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11203] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11209] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11215] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11221] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11227] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11233] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11239] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11245] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11251] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11257] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11263] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11269] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11275] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11281] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11287] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [11293] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11299] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11305] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11311] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11317] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11323] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11329] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11335] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11341] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [11347] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11353] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11359] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11365] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11371] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11377] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11383] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11389] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11395] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [11401] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11407] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11413] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11419] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11425] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11431] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11437] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11443] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11449] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11455] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11461] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11467] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11473] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11479] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11485] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11491] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11497] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11503] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11509] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11515] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11521] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11527] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11533] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11539] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11545] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11551] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11557] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11563] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11569] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11575] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11581] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11587] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11593] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11599] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11605] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11611] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11617] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [11623] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11629] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11635] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11641] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11647] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11653] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11659] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11665] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [11671] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [11677] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11683] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11689] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11695] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11701] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11707] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11713] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11719] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [11725] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [11731] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11737] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11743] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11749] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11755] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11761] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11767] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11773] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11779] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [11785] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11791] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11797] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11803] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11809] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11815] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11821] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11827] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11833] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [11839] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11845] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11851] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11857] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11863] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11869] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11875] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11881] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11887] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [11893] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [11899] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11905] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11911] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11917] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11923] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11929] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11935] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11941] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [11947] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [11953] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11959] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11965] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11971] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11977] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11983] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11989] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [11995] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12001] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [12007] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12013] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12019] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12025] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12031] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12037] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12043] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12049] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12055] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [12061] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12067] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12073] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12079] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12085] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12091] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12097] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12103] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12109] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12115] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12121] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12127] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12133] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12139] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12145] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12151] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12157] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12163] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12169] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12175] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12181] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12187] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12193] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12199] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12205] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12211] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12217] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12223] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12229] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12235] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12241] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12247] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12253] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12259] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12265] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12271] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12277] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [12283] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12289] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12295] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12301] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12307] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12313] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12319] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12325] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12331] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [12337] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12343] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12349] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12355] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12361] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12367] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12373] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12379] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12385] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [12391] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12397] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12403] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12409] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12415] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12421] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12427] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12433] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12439] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12445] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12451] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12457] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12463] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12469] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12475] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12481] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12487] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12493] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12499] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12505] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12511] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12517] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12523] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12529] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12535] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12541] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12547] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12553] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12559] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12565] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12571] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12577] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12583] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12589] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12595] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12601] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12607] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [12613] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12619] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12625] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12631] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12637] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12643] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12649] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12655] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [12661] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [12667] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12673] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12679] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12685] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12691] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12697] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12703] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12709] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [12715] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [12721] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12727] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12733] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12739] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12745] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12751] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12757] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12763] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12769] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [12775] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12781] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12787] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12793] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12799] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12805] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12811] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12817] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12823] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [12829] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12835] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12841] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12847] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12853] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12859] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12865] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12871] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12877] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [12883] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [12889] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12895] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12901] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12907] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12913] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12919] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12925] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12931] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [12937] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [12943] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12949] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12955] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12961] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12967] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12973] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12979] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12985] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [12991] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [12997] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13003] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13009] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13015] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13021] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13027] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13033] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13039] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13045] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [13051] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13057] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13063] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13069] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13075] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13081] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13087] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13093] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13099] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13105] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13111] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13117] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13123] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13129] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13135] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13141] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13147] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13153] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13159] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13165] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13171] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13177] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13183] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13189] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13195] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13201] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13207] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13213] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13219] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13225] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13231] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13237] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13243] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13249] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13255] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13261] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13267] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [13273] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13279] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13285] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13291] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13297] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13303] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13309] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13315] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13321] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [13327] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13333] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13339] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13345] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13351] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13357] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13363] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13369] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13375] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [13381] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13387] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13393] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13399] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13405] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13411] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13417] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13423] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13429] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13435] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13441] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13447] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13453] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13459] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13465] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13471] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13477] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13483] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13489] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13495] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13501] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13507] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13513] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13519] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13525] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13531] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13537] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13543] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13549] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13555] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13561] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13567] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13573] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13579] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13585] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13591] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13597] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [13603] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13609] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13615] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13621] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13627] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13633] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13639] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13645] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13651] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [13657] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13663] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13669] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13675] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13681] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13687] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13693] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13699] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [13705] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [13711] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13717] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13723] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13729] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13735] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13741] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13747] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13753] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13759] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [13765] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13771] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13777] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13783] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13789] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13795] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13801] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13807] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13813] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [13819] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13825] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13831] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13837] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13843] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13849] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13855] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13861] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13867] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [13873] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13879] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13885] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13891] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13897] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13903] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13909] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13915] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13921] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [13927] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [13933] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13939] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13945] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13951] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13957] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13963] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13969] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13975] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [13981] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [13987] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13993] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [13999] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14005] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14011] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14017] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14023] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14029] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14035] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [14041] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14047] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14053] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14059] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14065] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14071] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14077] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14083] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14089] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14095] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14101] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14107] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14113] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14119] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14125] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14131] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14137] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14143] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14149] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14155] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14161] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14167] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14173] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14179] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14185] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14191] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14197] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14203] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [14209] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14215] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14221] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14227] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14233] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14239] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14245] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14251] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14257] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [14263] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14269] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14275] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14281] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14287] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14293] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14299] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14305] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14311] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [14317] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14323] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14329] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14335] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14341] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14347] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14353] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14359] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14365] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [14371] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14377] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14383] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14389] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14395] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14401] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14407] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14413] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14419] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14425] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14431] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14437] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14443] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14449] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14455] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14461] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14467] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14473] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14479] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14485] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14491] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14497] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14503] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14509] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14515] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14521] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14527] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14533] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14539] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14545] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14551] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14557] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14563] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14569] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14575] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14581] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14587] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [14593] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14599] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14605] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14611] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14617] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14623] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14629] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14635] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14641] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [14647] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14653] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14659] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14665] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14671] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14677] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14683] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14689] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [14695] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [14701] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14707] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14713] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14719] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14725] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14731] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14737] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14743] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14749] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [14755] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14761] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14767] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14773] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14779] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14785] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14791] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14797] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14803] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [14809] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14815] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14821] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14827] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14833] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14839] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14845] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14851] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14857] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [14863] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14869] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14875] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14881] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14887] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14893] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14899] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14905] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14911] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [14917] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [14923] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14929] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14935] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14941] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14947] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14953] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14959] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14965] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [14971] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [14977] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14983] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14989] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [14995] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15001] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15007] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15013] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15019] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15025] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [15031] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15037] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15043] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15049] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15055] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15061] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15067] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15073] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15079] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15085] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15091] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15097] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15103] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15109] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15115] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15121] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15127] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15133] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15139] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15145] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15151] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15157] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15163] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15169] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15175] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15181] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15187] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15193] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [15199] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15205] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15211] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15217] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15223] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15229] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15235] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15241] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15247] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [15253] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15259] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15265] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15271] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15277] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15283] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15289] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15295] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15301] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [15307] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15313] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15319] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15325] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15331] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15337] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15343] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15349] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15355] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [15361] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15367] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15373] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15379] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15385] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15391] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15397] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15403] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15409] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15415] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15421] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15427] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15433] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15439] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15445] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15451] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15457] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15463] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15469] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15475] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15481] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15487] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15493] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15499] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15505] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15511] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15517] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15523] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15529] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15535] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15541] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15547] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15553] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15559] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15565] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15571] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15577] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [15583] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15589] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15595] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15601] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15607] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15613] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15619] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15625] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15631] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [15637] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15643] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15649] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15655] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15661] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15667] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15673] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15679] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [15685] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [15691] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15697] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15703] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15709] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15715] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15721] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15727] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15733] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15739] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [15745] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15751] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15757] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15763] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15769] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15775] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15781] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15787] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15793] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [15799] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15805] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15811] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15817] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15823] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15829] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15835] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15841] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15847] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [15853] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15859] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15865] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15871] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15877] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15883] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15889] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15895] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15901] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [15907] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [15913] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15919] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15925] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15931] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15937] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15943] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15949] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15955] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [15961] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [15967] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15973] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15979] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15985] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15991] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [15997] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16003] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16009] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16015] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [16021] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16027] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16033] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16039] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16045] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16051] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16057] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16063] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16069] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16075] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16081] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16087] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16093] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16099] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16105] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16111] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16117] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16123] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16129] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16135] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16141] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16147] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16153] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16159] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16165] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16171] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16177] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16183] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16189] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16195] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16201] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16207] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16213] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16219] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16225] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16231] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16237] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [16243] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16249] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16255] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16261] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16267] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16273] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16279] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16285] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16291] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [16297] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16303] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16309] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16315] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16321] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16327] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16333] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16339] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16345] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [16351] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16357] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16363] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16369] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16375] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16381] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16387] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16393] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16399] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16405] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16411] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16417] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16423] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16429] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16435] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16441] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16447] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16453] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16459] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16465] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16471] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16477] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16483] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16489] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16495] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16501] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16507] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16513] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [16519] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16525] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16531] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16537] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16543] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16549] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16555] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16561] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16567] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [16573] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16579] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16585] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16591] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16597] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16603] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16609] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16615] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16621] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [16627] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16633] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16639] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16645] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16651] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16657] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16663] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16669] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [16675] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [16681] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16687] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16693] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16699] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16705] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16711] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16717] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16723] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16729] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [16735] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16741] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16747] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16753] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16759] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16765] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16771] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16777] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16783] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [16789] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16795] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16801] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16807] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16813] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16819] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16825] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16831] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16837] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [16843] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16849] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16855] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16861] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16867] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16873] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16879] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16885] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16891] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [16897] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [16903] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16909] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16915] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16921] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16927] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16933] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16939] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16945] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [16951] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [16957] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16963] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16969] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16975] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16981] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16987] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16993] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [16999] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17005] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [17011] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17017] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17023] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17029] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17035] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17041] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17047] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17053] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17059] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17065] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17071] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17077] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17083] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17089] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17095] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17101] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17107] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17113] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17119] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17125] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17131] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17137] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17143] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17149] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17155] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17161] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17167] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17173] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17179] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17185] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17191] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17197] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17203] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17209] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17215] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17221] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17227] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [17233] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17239] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17245] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17251] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17257] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17263] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17269] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17275] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17281] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [17287] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17293] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17299] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17305] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17311] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17317] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17323] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17329] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17335] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [17341] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17347] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17353] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17359] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17365] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17371] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17377] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17383] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17389] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17395] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17401] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17407] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17413] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17419] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17425] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17431] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17437] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17443] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17449] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17455] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17461] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17467] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17473] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17479] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17485] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17491] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17497] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17503] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [17509] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17515] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17521] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17527] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17533] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17539] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17545] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17551] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17557] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [17563] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17569] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17575] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17581] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17587] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17593] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17599] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17605] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17611] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [17617] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17623] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17629] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17635] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17641] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17647] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17653] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17659] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [17665] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [17671] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17677] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17683] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17689] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17695] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17701] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17707] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17713] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17719] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [17725] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17731] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17737] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17743] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17749] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17755] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17761] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17767] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17773] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [17779] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17785] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17791] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17797] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17803] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17809] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17815] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17821] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17827] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [17833] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17839] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17845] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17851] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17857] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17863] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17869] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17875] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17881] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [17887] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [17893] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17899] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17905] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17911] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17917] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17923] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17929] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17935] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [17941] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [17947] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17953] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17959] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17965] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17971] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17977] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17983] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17989] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [17995] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [18001] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18007] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18013] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18019] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18025] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18031] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18037] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18043] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18049] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18055] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18061] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18067] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18073] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18079] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18085] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18091] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18097] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18103] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18109] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18115] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18121] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18127] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18133] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18139] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18145] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18151] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18157] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18163] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18169] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18175] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18181] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18187] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18193] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18199] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18205] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18211] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18217] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [18223] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18229] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18235] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18241] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18247] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18253] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18259] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18265] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18271] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [18277] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18283] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18289] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18295] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18301] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18307] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18313] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18319] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18325] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [18331] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18337] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18343] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18349] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18355] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18361] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18367] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18373] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18379] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18385] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18391] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18397] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18403] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18409] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18415] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18421] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18427] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18433] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18439] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18445] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18451] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18457] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18463] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18469] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18475] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18481] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18487] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18493] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18499] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18505] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18511] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18517] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18523] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18529] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18535] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18541] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18547] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [18553] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18559] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18565] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18571] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18577] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18583] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18589] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18595] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18601] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [18607] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18613] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18619] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18625] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18631] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18637] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18643] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18649] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18655] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [18661] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18667] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18673] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18679] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18685] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18691] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18697] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18703] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18709] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [18715] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18721] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18727] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18733] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18739] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18745] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18751] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18757] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18763] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [18769] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18775] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18781] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18787] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18793] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18799] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18805] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18811] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18817] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [18823] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [18829] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18835] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18841] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18847] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18853] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18859] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18865] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18871] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [18877] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [18883] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18889] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18895] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18901] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18907] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18913] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18919] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18925] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [18931] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [18937] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18943] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18949] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18955] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18961] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18967] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18973] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18979] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [18985] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [18991] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [18997] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19003] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19009] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19015] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19021] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19027] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19033] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19039] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19045] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19051] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19057] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19063] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19069] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19075] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19081] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19087] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19093] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19099] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19105] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19111] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19117] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19123] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19129] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19135] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19141] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19147] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19153] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19159] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19165] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19171] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19177] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19183] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19189] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19195] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19201] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19207] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [19213] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19219] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19225] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19231] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19237] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19243] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19249] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19255] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19261] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [19267] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19273] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19279] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19285] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19291] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19297] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19303] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19309] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19315] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [19321] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19327] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19333] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19339] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19345] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19351] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19357] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19363] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19369] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19375] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19381] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19387] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19393] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19399] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19405] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19411] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19417] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19423] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19429] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19435] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19441] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19447] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19453] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19459] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19465] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19471] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19477] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19483] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19489] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19495] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19501] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19507] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19513] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19519] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19525] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19531] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19537] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [19543] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19549] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19555] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19561] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19567] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19573] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19579] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19585] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19591] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [19597] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19603] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19609] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19615] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19621] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19627] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19633] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19639] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19645] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [19651] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19657] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19663] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19669] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19675] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19681] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19687] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19693] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19699] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [19705] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19711] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19717] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19723] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19729] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19735] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19741] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19747] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19753] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [19759] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19765] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19771] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19777] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19783] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19789] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19795] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19801] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19807] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [19813] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [19819] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19825] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19831] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19837] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19843] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19849] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19855] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19861] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [19867] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [19873] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19879] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19885] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19891] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19897] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19903] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19909] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19915] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [19921] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [19927] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19933] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19939] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19945] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19951] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19957] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19963] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19969] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [19975] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [19981] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19987] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19993] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [19999] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20005] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20011] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20017] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20023] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20029] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20035] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20041] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20047] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20053] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20059] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20065] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20071] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20077] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20083] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20089] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20095] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20101] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20107] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20113] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20119] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20125] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20131] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20137] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20143] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20149] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20155] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20161] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20167] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20173] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20179] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20185] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20191] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20197] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [20203] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20209] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20215] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20221] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20227] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20233] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20239] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20245] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20251] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [20257] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20263] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20269] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20275] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20281] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20287] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20293] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20299] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20305] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [20311] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20317] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20323] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20329] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20335] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20341] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20347] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20353] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20359] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20365] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20371] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20377] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20383] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20389] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20395] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20401] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20407] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20413] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20419] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20425] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20431] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20437] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20443] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20449] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20455] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20461] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20467] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20473] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20479] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20485] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20491] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20497] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20503] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20509] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20515] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20521] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20527] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [20533] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20539] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20545] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20551] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20557] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20563] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20569] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20575] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20581] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [20587] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20593] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20599] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20605] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20611] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20617] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20623] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20629] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20635] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [20641] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20647] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20653] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20659] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20665] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20671] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20677] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20683] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20689] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [20695] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20701] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20707] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20713] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20719] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20725] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20731] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20737] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20743] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [20749] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20755] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20761] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20767] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20773] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20779] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20785] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20791] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20797] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [20803] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20809] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20815] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20821] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20827] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20833] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20839] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20845] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20851] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [20857] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [20863] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20869] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20875] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20881] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20887] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20893] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20899] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20905] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [20911] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [20917] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20923] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20929] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20935] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20941] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20947] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20953] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20959] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [20965] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [20971] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20977] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20983] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20989] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [20995] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21001] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21007] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21013] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21019] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21025] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21031] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21037] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21043] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21049] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21055] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21061] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21067] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21073] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21079] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21085] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21091] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21097] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21103] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21109] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21115] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21121] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21127] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21133] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [21139] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21145] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21151] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21157] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21163] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21169] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21175] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21181] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21187] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [21193] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21199] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21205] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21211] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21217] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21223] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21229] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21235] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21241] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [21247] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21253] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21259] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21265] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21271] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21277] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21283] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21289] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21295] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [21301] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21307] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21313] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21319] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21325] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21331] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21337] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21343] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21349] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21355] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21361] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21367] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21373] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21379] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21385] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21391] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21397] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21403] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21409] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21415] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21421] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21427] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21433] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21439] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21445] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21451] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21457] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21463] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21469] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21475] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21481] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21487] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21493] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21499] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21505] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21511] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21517] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [21523] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21529] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21535] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21541] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21547] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21553] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21559] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21565] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21571] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [21577] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21583] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21589] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21595] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21601] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21607] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21613] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21619] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21625] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [21631] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21637] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21643] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21649] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21655] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21661] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21667] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21673] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21679] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [21685] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21691] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21697] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21703] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21709] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21715] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21721] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21727] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21733] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [21739] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21745] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21751] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21757] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21763] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21769] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21775] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21781] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21787] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [21793] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21799] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21805] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21811] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21817] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21823] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21829] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21835] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21841] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [21847] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [21853] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21859] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21865] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21871] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21877] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21883] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21889] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21895] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [21901] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [21907] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21913] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21919] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21925] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21931] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21937] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21943] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21949] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [21955] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [21961] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21967] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21973] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21979] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21985] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21991] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [21997] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22003] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22009] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22015] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22021] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22027] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22033] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22039] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22045] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22051] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22057] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22063] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22069] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22075] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22081] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22087] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22093] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22099] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22105] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22111] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22117] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22123] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [22129] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22135] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22141] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22147] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22153] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22159] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22165] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22171] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22177] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [22183] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22189] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22195] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22201] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22207] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22213] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22219] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22225] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22231] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [22237] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22243] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22249] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22255] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22261] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22267] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22273] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22279] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22285] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [22291] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22297] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22303] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22309] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22315] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22321] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22327] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22333] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22339] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22345] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22351] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22357] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22363] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22369] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22375] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22381] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22387] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22393] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22399] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22405] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22411] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22417] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22423] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22429] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22435] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22441] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22447] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22453] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22459] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22465] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22471] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22477] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22483] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22489] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22495] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22501] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22507] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [22513] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22519] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22525] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22531] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22537] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22543] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22549] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22555] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22561] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [22567] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22573] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22579] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22585] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22591] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22597] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22603] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22609] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22615] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [22621] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22627] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22633] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22639] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22645] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22651] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22657] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22663] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22669] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [22675] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22681] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22687] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22693] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22699] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22705] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22711] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22717] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22723] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [22729] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22735] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22741] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22747] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22753] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22759] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22765] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22771] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22777] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [22783] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22789] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22795] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22801] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22807] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22813] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22819] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22825] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22831] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [22837] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [22843] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22849] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22855] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22861] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22867] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22873] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22879] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22885] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [22891] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [22897] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22903] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22909] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22915] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22921] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22927] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22933] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22939] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [22945] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [22951] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22957] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22963] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22969] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22975] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22981] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22987] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22993] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [22999] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23005] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23011] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23017] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23023] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23029] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23035] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23041] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23047] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23053] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23059] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23065] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23071] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23077] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23083] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23089] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23095] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23101] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23107] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23113] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23119] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23125] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23131] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23137] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23143] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23149] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23155] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23161] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23167] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [23173] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23179] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23185] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23191] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23197] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23203] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23209] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23215] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23221] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [23227] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23233] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23239] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23245] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23251] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23257] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23263] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23269] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23275] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [23281] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23287] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23293] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23299] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23305] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23311] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23317] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23323] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23329] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23335] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23341] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23347] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23353] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23359] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23365] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23371] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23377] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23383] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23389] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23395] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23401] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23407] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23413] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23419] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23425] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23431] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23437] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23443] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [23449] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23455] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23461] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23467] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23473] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23479] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23485] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23491] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23497] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [23503] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23509] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23515] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23521] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23527] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23533] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23539] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23545] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23551] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [23557] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23563] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23569] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23575] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23581] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23587] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23593] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23599] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23605] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [23611] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23617] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23623] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23629] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23635] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23641] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23647] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23653] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23659] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [23665] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23671] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23677] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23683] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23689] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23695] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23701] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23707] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23713] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [23719] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23725] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23731] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23737] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23743] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23749] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23755] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23761] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23767] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [23773] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23779] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23785] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23791] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23797] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23803] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23809] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23815] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23821] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [23827] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [23833] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23839] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23845] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23851] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23857] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23863] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23869] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23875] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [23881] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [23887] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23893] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23899] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23905] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23911] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23917] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23923] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23929] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [23935] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [23941] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23947] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23953] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23959] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23965] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23971] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23977] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23983] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23989] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [23995] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24001] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24007] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24013] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24019] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24025] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24031] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24037] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24043] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24049] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24055] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24061] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24067] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24073] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24079] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24085] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24091] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24097] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24103] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24109] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24115] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24121] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24127] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24133] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24139] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24145] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24151] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24157] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [24163] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24169] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24175] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24181] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24187] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24193] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24199] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24205] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24211] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [24217] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24223] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24229] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24235] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24241] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24247] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24253] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24259] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24265] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [24271] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24277] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24283] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24289] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24295] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24301] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24307] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24313] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24319] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24325] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24331] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24337] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24343] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24349] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24355] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24361] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24367] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24373] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24379] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24385] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24391] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24397] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24403] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24409] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24415] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24421] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24427] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24433] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [24439] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24445] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24451] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24457] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24463] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24469] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24475] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24481] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24487] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [24493] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24499] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24505] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24511] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24517] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24523] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24529] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24535] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24541] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [24547] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24553] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24559] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24565] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24571] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24577] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24583] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24589] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24595] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [24601] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24607] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24613] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24619] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24625] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24631] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24637] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24643] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24649] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24655] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24661] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24667] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24673] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24679] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24685] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24691] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24697] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24703] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [24709] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24715] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24721] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24727] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24733] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24739] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24745] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24751] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24757] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [24763] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24769] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24775] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24781] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24787] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24793] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24799] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24805] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24811] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [24817] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [24823] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24829] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24835] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24841] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24847] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24853] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24859] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24865] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [24871] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [24877] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24883] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24889] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24895] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24901] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24907] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24913] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24919] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [24925] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [24931] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24937] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24943] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24949] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24955] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24961] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24967] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24973] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24979] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [24985] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24991] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [24997] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25003] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25009] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25015] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25021] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25027] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25033] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25039] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25045] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25051] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25057] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25063] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25069] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25075] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25081] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25087] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25093] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25099] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25105] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25111] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25117] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25123] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25129] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25135] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25141] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25147] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [25153] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25159] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25165] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25171] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25177] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25183] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25189] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25195] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25201] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [25207] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25213] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25219] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25225] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25231] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25237] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25243] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25249] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25255] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [25261] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25267] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25273] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25279] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25285] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25291] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25297] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25303] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25309] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25315] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25321] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25327] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25333] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25339] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25345] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25351] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25357] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25363] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25369] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25375] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25381] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25387] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25393] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25399] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25405] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25411] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25417] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25423] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25429] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25435] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25441] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25447] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25453] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25459] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25465] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25471] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25477] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [25483] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25489] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25495] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25501] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25507] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25513] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25519] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25525] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25531] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [25537] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25543] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25549] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25555] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25561] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25567] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25573] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25579] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25585] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [25591] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25597] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25603] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25609] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25615] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25621] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25627] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25633] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25639] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25645] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25651] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25657] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25663] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25669] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25675] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25681] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25687] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25693] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [25699] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25705] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25711] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25717] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25723] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25729] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25735] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25741] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25747] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [25753] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [25759] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25765] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25771] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25777] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25783] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25789] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25795] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25801] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [25807] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [25813] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25819] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25825] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25831] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25837] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25843] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25849] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25855] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [25861] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [25867] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25873] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25879] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25885] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25891] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25897] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25903] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25909] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [25915] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [25921] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25927] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25933] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25939] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25945] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25951] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25957] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25963] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25969] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [25975] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25981] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25987] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25993] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [25999] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26005] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26011] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26017] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26023] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26029] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26035] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26041] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26047] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26053] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26059] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26065] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26071] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26077] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26083] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26089] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26095] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26101] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26107] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26113] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26119] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26125] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26131] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26137] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [26143] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26149] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26155] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26161] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26167] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26173] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26179] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26185] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26191] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [26197] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26203] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26209] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26215] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26221] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26227] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26233] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26239] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26245] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [26251] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26257] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26263] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26269] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26275] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26281] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26287] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26293] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26299] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26305] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26311] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26317] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26323] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26329] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26335] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26341] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26347] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26353] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26359] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26365] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26371] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26377] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26383] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26389] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26395] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26401] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26407] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26413] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26419] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26425] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26431] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26437] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26443] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26449] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26455] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26461] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26467] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [26473] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26479] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26485] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26491] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26497] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26503] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26509] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26515] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26521] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [26527] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26533] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26539] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26545] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26551] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26557] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26563] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26569] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26575] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [26581] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26587] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26593] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26599] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26605] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26611] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26617] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26623] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26629] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26635] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26641] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26647] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26653] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26659] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26665] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26671] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26677] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26683] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [26689] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26695] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26701] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26707] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26713] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26719] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26725] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26731] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26737] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [26743] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [26749] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26755] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26761] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26767] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26773] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26779] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26785] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26791] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [26797] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [26803] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26809] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26815] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26821] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26827] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26833] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26839] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26845] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [26851] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [26857] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26863] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26869] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26875] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26881] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26887] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26893] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26899] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [26905] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [26911] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26917] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26923] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26929] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26935] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26941] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26947] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26953] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26959] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [26965] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26971] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26977] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26983] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26989] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [26995] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27001] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27007] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27013] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27019] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27025] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27031] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27037] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27043] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27049] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27055] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27061] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27067] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27073] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27079] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27085] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27091] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27097] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27103] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27109] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27115] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27121] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27127] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [27133] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27139] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27145] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27151] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27157] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27163] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27169] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27175] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27181] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [27187] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27193] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27199] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27205] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27211] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27217] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27223] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27229] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27235] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [27241] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27247] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27253] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27259] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27265] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27271] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27277] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27283] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27289] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27295] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27301] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27307] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27313] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27319] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27325] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27331] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27337] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27343] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27349] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27355] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27361] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27367] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27373] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27379] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27385] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27391] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27397] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27403] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27409] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27415] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27421] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27427] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27433] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27439] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27445] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27451] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27457] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [27463] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27469] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27475] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27481] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27487] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27493] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27499] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27505] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27511] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [27517] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27523] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27529] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27535] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27541] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27547] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27553] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27559] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27565] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [27571] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27577] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27583] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27589] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27595] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27601] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27607] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27613] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27619] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27625] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27631] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27637] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27643] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27649] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27655] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27661] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27667] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27673] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [27679] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27685] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27691] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27697] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27703] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27709] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27715] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27721] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27727] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [27733] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27739] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27745] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27751] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27757] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27763] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27769] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27775] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27781] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [27787] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [27793] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27799] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27805] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27811] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27817] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27823] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27829] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27835] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [27841] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [27847] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27853] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27859] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27865] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27871] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27877] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27883] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27889] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [27895] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [27901] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27907] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27913] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27919] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27925] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27931] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27937] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27943] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27949] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [27955] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27961] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27967] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27973] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27979] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27985] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27991] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [27997] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28003] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28009] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28015] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28021] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28027] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28033] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28039] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28045] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28051] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28057] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28063] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [28069] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28075] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28081] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28087] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28093] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28099] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28105] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28111] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28117] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [28123] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28129] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28135] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28141] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28147] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28153] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28159] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28165] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28171] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [28177] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28183] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28189] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28195] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28201] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28207] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28213] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28219] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28225] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [28231] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28237] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28243] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28249] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28255] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28261] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28267] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28273] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28279] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28285] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28291] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28297] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28303] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28309] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28315] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28321] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28327] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28333] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28339] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28345] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28351] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28357] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28363] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28369] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28375] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28381] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28387] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28393] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28399] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28405] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28411] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28417] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28423] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28429] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28435] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28441] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28447] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [28453] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28459] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28465] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28471] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28477] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28483] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28489] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28495] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28501] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [28507] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28513] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28519] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28525] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28531] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28537] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28543] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28549] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28555] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [28561] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28567] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28573] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28579] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28585] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28591] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28597] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28603] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28609] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28615] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28621] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28627] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28633] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28639] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28645] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28651] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28657] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28663] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [28669] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28675] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28681] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28687] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28693] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28699] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28705] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28711] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28717] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [28723] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28729] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28735] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28741] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28747] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28753] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28759] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28765] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28771] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [28777] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [28783] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28789] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28795] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28801] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28807] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28813] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28819] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28825] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [28831] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [28837] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28843] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28849] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28855] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28861] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28867] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28873] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28879] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [28885] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [28891] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28897] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28903] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28909] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28915] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28921] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28927] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28933] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28939] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [28945] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28951] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28957] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28963] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28969] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28975] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28981] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28987] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28993] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [28999] "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29005] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29011] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29017] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29023] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29029] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29035] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29041] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29047] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29053] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [29059] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29065] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29071] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29077] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29083] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29089] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29095] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29101] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29107] "Friday" "Friday" "Friday" "Saturday" "Saturday" "Saturday"
## [29113] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29119] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29125] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29131] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29137] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29143] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29149] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29155] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29161] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [29167] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29173] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29179] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29185] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29191] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29197] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29203] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29209] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29215] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Monday"
## [29221] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29227] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29233] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29239] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29245] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29251] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29257] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29263] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29269] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29275] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29281] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29287] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29293] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29299] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29305] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29311] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29317] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29323] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29329] "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29335] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29341] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29347] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29353] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29359] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29365] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29371] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29377] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29383] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29389] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29395] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29401] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29407] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29413] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29419] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29425] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29431] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29437] "Thursday" "Thursday" "Thursday" "Friday" "Friday" "Friday"
## [29443] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29449] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29455] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29461] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29467] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29473] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29479] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29485] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29491] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [29497] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29503] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29509] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29515] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29521] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29527] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29533] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29539] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29545] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Sunday"
## [29551] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29557] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29563] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29569] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29575] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29581] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29587] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29593] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29599] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29605] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29611] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29617] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29623] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29629] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29635] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29641] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29647] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29653] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29659] "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29665] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29671] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29677] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29683] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29689] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29695] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29701] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29707] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [29713] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29719] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29725] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29731] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29737] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29743] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29749] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29755] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29761] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [29767] "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday"
## [29773] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29779] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29785] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29791] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29797] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29803] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29809] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29815] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [29821] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [29827] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29833] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29839] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29845] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29851] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29857] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29863] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29869] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [29875] "Friday" "Friday" "Friday" "Friday" "Friday" "Saturday"
## [29881] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29887] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29893] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29899] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29905] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29911] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29917] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29923] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29929] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [29935] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29941] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29947] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29953] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29959] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29965] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29971] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29977] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29983] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [29989] "Sunday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [29995] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30001] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30007] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30013] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30019] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30025] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30031] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30037] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30043] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30049] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30055] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30061] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30067] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30073] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30079] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30085] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30091] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30097] "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday"
## [30103] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30109] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30115] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30121] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30127] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30133] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30139] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30145] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30151] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [30157] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30163] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30169] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30175] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30181] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30187] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30193] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30199] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30205] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Friday"
## [30211] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30217] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30223] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30229] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30235] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30241] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30247] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30253] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30259] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30265] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30271] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30277] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30283] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30289] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30295] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30301] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30307] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30313] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30319] "Saturday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30325] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30331] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30337] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30343] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30349] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30355] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30361] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30367] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30373] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [30379] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30385] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30391] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30397] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30403] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30409] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30415] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30421] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30427] "Monday" "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday"
## [30433] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30439] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30445] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30451] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30457] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30463] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30469] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30475] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30481] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [30487] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30493] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30499] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30505] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30511] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30517] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30523] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30529] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30535] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday"
## [30541] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30547] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30553] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30559] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30565] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30571] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30577] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30583] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30589] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30595] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30601] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30607] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30613] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30619] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30625] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30631] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30637] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30643] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30649] "Friday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30655] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30661] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30667] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30673] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30679] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30685] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30691] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30697] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [30703] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30709] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30715] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30721] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30727] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30733] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30739] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30745] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30751] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [30757] "Sunday" "Sunday" "Sunday" "Monday" "Monday" "Monday"
## [30763] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30769] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30775] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30781] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30787] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30793] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30799] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30805] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [30811] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [30817] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30823] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30829] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30835] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30841] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30847] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30853] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30859] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [30865] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday"
## [30871] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30877] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30883] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30889] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30895] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30901] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30907] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30913] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30919] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [30925] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30931] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30937] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30943] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30949] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30955] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30961] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30967] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30973] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [30979] "Thursday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30985] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30991] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [30997] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31003] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31009] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31015] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31021] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31027] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31033] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31039] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31045] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31051] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31057] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31063] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31069] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31075] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31081] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31087] "Saturday" "Saturday" "Saturday" "Sunday" "Sunday" "Sunday"
## [31093] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31099] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31105] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31111] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31117] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31123] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31129] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31135] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31141] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [31147] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31153] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31159] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31165] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31171] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31177] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31183] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31189] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31195] "Monday" "Monday" "Monday" "Monday" "Monday" "Tuesday"
## [31201] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31207] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31213] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31219] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31225] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31231] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31237] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31243] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31249] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31255] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31261] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31267] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31273] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31279] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31285] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31291] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31297] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31303] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31309] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31315] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31321] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31327] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31333] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31339] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31345] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31351] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31357] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31363] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [31369] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31375] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31381] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31387] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31393] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31399] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31405] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31411] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31417] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31423] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31429] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31435] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31441] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31447] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31453] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31459] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31465] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31471] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31477] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31483] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31489] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31495] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31501] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31507] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31513] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31519] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31525] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31531] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [31537] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31543] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31549] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31555] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31561] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31567] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31573] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31579] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31585] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31591] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31597] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31603] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31609] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31615] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31621] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31627] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31633] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31639] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31645] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31651] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31657] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31663] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31669] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31675] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31681] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31687] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31693] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [31699] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [31705] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31711] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31717] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31723] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31729] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31735] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31741] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31747] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31753] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [31759] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31765] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31771] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31777] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31783] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31789] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31795] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31801] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31807] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [31813] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31819] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31825] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31831] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31837] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31843] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31849] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31855] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31861] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [31867] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [31873] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31879] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31885] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31891] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31897] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31903] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31909] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31915] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31921] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [31927] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31933] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31939] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31945] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31951] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31957] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31963] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31969] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31975] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [31981] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31987] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31993] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [31999] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32005] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32011] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32017] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32023] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32029] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32035] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [32041] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32047] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32053] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32059] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32065] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32071] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32077] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32083] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32089] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32095] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32101] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32107] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32113] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32119] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32125] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32131] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32137] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32143] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32149] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [32155] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32161] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32167] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32173] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32179] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32185] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32191] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32197] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32203] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [32209] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32215] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32221] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32227] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32233] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32239] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32245] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32251] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32257] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32263] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32269] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32275] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32281] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32287] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32293] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32299] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32305] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32311] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32317] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [32323] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32329] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32335] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32341] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32347] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32353] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32359] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32365] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32371] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [32377] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32383] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32389] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32395] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32401] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32407] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32413] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32419] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32425] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32431] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32437] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32443] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32449] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32455] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32461] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32467] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32473] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32479] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32485] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32491] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32497] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32503] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32509] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32515] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32521] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32527] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32533] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32539] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [32545] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32551] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32557] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32563] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32569] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32575] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32581] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32587] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32593] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32599] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32605] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32611] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32617] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32623] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32629] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32635] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32641] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32647] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32653] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32659] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32665] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32671] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32677] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32683] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32689] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32695] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32701] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [32707] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [32713] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32719] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32725] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32731] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32737] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32743] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32749] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32755] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32761] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [32767] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32773] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32779] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32785] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32791] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32797] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32803] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32809] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32815] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [32821] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32827] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32833] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32839] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32845] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32851] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32857] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32863] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32869] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [32875] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [32881] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32887] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32893] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32899] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32905] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32911] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32917] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32923] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32929] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [32935] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32941] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32947] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32953] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32959] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32965] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32971] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32977] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32983] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [32989] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [32995] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33001] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33007] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33013] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33019] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33025] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33031] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33037] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33043] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [33049] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33055] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33061] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33067] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33073] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33079] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33085] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33091] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33097] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33103] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33109] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33115] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33121] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33127] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33133] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33139] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33145] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33151] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33157] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33163] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33169] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33175] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33181] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33187] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33193] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33199] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33205] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33211] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [33217] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33223] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33229] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33235] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33241] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33247] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33253] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33259] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33265] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33271] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33277] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33283] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33289] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33295] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33301] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33307] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33313] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33319] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33325] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [33331] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33337] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33343] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33349] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33355] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33361] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33367] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33373] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33379] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [33385] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33391] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33397] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33403] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33409] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33415] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33421] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33427] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33433] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33439] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33445] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33451] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33457] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33463] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33469] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33475] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33481] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33487] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33493] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [33499] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33505] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33511] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33517] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33523] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33529] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33535] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33541] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33547] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [33553] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33559] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33565] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33571] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33577] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33583] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33589] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33595] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33601] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33607] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33613] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33619] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33625] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33631] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33637] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33643] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33649] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33655] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [33661] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33667] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33673] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33679] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33685] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33691] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33697] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33703] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33709] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [33715] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [33721] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33727] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33733] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33739] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33745] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33751] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33757] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33763] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33769] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [33775] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33781] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33787] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33793] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33799] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33805] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33811] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33817] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33823] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [33829] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33835] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33841] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33847] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33853] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33859] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33865] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33871] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33877] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [33883] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [33889] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33895] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33901] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33907] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33913] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33919] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33925] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33931] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33937] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [33943] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33949] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33955] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33961] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33967] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33973] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33979] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33985] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33991] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [33997] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34003] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34009] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34015] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34021] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34027] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34033] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34039] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34045] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34051] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [34057] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34063] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34069] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34075] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34081] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34087] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34093] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34099] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34105] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34111] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34117] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34123] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34129] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34135] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34141] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34147] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34153] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34159] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34165] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34171] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34177] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34183] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34189] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34195] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34201] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34207] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34213] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34219] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [34225] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34231] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34237] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34243] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34249] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34255] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34261] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34267] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34273] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34279] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34285] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34291] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34297] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34303] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34309] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34315] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34321] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34327] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34333] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34339] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34345] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34351] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34357] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34363] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34369] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34375] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34381] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34387] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [34393] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34399] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34405] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34411] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34417] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34423] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34429] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34435] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34441] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34447] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34453] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34459] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34465] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34471] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34477] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34483] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34489] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34495] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34501] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [34507] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34513] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34519] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34525] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34531] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34537] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34543] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34549] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34555] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [34561] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34567] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34573] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34579] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34585] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34591] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34597] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34603] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34609] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34615] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34621] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34627] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34633] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34639] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34645] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34651] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34657] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34663] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [34669] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [34675] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34681] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34687] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34693] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34699] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34705] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34711] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34717] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [34723] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [34729] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34735] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34741] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34747] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34753] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34759] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34765] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34771] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34777] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [34783] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34789] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34795] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34801] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34807] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34813] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34819] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34825] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34831] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [34837] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34843] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34849] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34855] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34861] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34867] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34873] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34879] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34885] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [34891] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [34897] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34903] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34909] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34915] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34921] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34927] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34933] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34939] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34945] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [34951] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34957] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34963] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34969] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34975] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34981] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34987] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34993] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [34999] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35005] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35011] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35017] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35023] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35029] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35035] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35041] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35047] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35053] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35059] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [35065] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35071] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35077] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35083] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35089] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35095] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35101] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35107] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35113] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35119] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35125] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35131] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35137] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35143] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35149] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35155] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35161] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35167] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35173] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35179] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35185] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35191] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35197] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35203] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35209] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35215] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35221] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35227] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [35233] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35239] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35245] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35251] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35257] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35263] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35269] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35275] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35281] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35287] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35293] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35299] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35305] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35311] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35317] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35323] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35329] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35335] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35341] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35347] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35353] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35359] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35365] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35371] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35377] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35383] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35389] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35395] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [35401] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35407] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35413] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35419] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35425] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35431] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35437] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35443] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35449] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35455] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35461] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35467] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35473] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35479] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35485] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35491] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35497] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35503] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35509] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35515] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35521] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35527] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35533] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35539] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35545] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35551] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35557] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35563] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [35569] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35575] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35581] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35587] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35593] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35599] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35605] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35611] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35617] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35623] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35629] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35635] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35641] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35647] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35653] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35659] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35665] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35671] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [35677] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [35683] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35689] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35695] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35701] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35707] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35713] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35719] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35725] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [35731] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [35737] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35743] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35749] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35755] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35761] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35767] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35773] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35779] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35785] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [35791] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35797] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35803] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35809] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35815] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35821] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35827] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35833] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35839] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [35845] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [35851] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35857] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35863] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35869] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35875] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35881] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35887] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35893] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [35899] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [35905] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35911] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35917] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35923] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35929] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35935] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35941] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35947] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35953] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [35959] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35965] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35971] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35977] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35983] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35989] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [35995] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36001] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36007] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36013] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36019] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36025] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36031] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36037] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36043] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36049] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36055] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36061] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36067] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [36073] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36079] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36085] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36091] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36097] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36103] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36109] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36115] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36121] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36127] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36133] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36139] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36145] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36151] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36157] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36163] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36169] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36175] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36181] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36187] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36193] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36199] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36205] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36211] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36217] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36223] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36229] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36235] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [36241] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36247] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36253] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36259] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36265] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36271] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36277] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36283] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36289] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36295] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36301] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36307] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36313] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36319] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36325] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36331] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36337] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36343] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36349] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36355] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36361] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36367] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36373] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36379] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36385] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36391] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36397] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36403] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [36409] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36415] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36421] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36427] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36433] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36439] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36445] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36451] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36457] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36463] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36469] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36475] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36481] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36487] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36493] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36499] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36505] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36511] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36517] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36523] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36529] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36535] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36541] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36547] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36553] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36559] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36565] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36571] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [36577] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36583] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36589] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36595] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36601] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36607] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36613] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36619] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36625] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36631] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36637] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36643] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36649] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36655] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36661] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36667] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36673] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36679] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [36685] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36691] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36697] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36703] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36709] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36715] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36721] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36727] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36733] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [36739] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [36745] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36751] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36757] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36763] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36769] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36775] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36781] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36787] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36793] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [36799] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36805] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36811] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36817] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36823] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36829] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36835] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36841] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36847] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [36853] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [36859] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36865] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36871] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36877] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36883] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36889] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36895] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36901] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [36907] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [36913] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36919] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36925] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36931] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36937] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36943] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36949] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36955] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36961] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [36967] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36973] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36979] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36985] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36991] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [36997] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37003] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37009] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37015] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37021] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [37027] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37033] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37039] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37045] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37051] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37057] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37063] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37069] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37075] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [37081] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37087] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37093] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37099] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37105] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37111] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37117] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37123] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37129] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37135] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37141] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37147] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37153] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37159] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37165] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37171] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37177] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37183] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37189] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37195] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37201] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37207] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37213] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37219] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37225] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37231] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37237] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37243] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [37249] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37255] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37261] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37267] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37273] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37279] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37285] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37291] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37297] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37303] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37309] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37315] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37321] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37327] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37333] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37339] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37345] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37351] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37357] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37363] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37369] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37375] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37381] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37387] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37393] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37399] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37405] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37411] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [37417] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37423] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37429] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37435] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37441] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37447] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37453] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37459] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37465] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37471] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37477] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37483] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37489] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37495] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37501] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37507] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37513] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37519] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37525] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37531] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37537] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37543] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37549] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37555] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37561] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37567] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37573] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37579] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [37585] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37591] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37597] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37603] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37609] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37615] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37621] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37627] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37633] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37639] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37645] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37651] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37657] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37663] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37669] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37675] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37681] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37687] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [37693] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37699] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37705] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37711] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37717] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37723] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37729] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37735] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37741] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [37747] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [37753] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37759] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37765] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37771] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37777] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37783] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37789] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37795] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37801] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [37807] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37813] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37819] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37825] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37831] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37837] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37843] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37849] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37855] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [37861] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37867] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37873] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37879] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37885] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37891] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37897] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37903] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37909] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [37915] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [37921] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37927] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37933] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37939] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37945] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37951] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37957] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37963] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37969] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [37975] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37981] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37987] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37993] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [37999] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38005] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38011] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38017] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38023] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38029] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [38035] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38041] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38047] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38053] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38059] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38065] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38071] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38077] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38083] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [38089] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38095] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38101] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38107] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38113] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38119] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38125] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38131] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38137] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38143] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38149] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38155] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38161] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38167] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38173] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38179] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38185] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38191] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38197] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [38203] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38209] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38215] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38221] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38227] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38233] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38239] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38245] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38251] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [38257] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38263] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38269] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38275] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38281] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38287] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38293] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38299] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38305] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38311] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38317] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38323] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38329] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38335] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38341] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38347] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38353] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38359] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38365] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38371] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38377] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38383] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38389] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38395] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38401] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38407] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38413] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38419] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [38425] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38431] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38437] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38443] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38449] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38455] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38461] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38467] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38473] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38479] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38485] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38491] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38497] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38503] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38509] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38515] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38521] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38527] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38533] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38539] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38545] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38551] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38557] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38563] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38569] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38575] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38581] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38587] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [38593] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38599] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38605] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38611] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38617] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38623] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38629] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38635] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38641] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38647] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38653] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38659] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38665] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38671] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38677] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38683] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38689] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38695] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [38701] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38707] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38713] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38719] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38725] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38731] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38737] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38743] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38749] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [38755] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [38761] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38767] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38773] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38779] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38785] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38791] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38797] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38803] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38809] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [38815] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38821] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38827] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38833] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38839] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38845] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38851] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38857] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38863] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [38869] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38875] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38881] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38887] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38893] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38899] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38905] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38911] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38917] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [38923] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [38929] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38935] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38941] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38947] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38953] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38959] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38965] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38971] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38977] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [38983] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38989] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [38995] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39001] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39007] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39013] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39019] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39025] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39031] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39037] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39043] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39049] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39055] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39061] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39067] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39073] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39079] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39085] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39091] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [39097] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39103] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39109] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39115] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39121] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39127] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39133] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39139] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39145] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39151] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39157] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39163] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39169] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39175] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39181] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39187] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39193] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39199] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39205] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [39211] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39217] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39223] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39229] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39235] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39241] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39247] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39253] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39259] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [39265] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39271] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39277] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39283] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39289] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39295] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39301] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39307] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39313] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39319] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39325] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39331] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39337] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39343] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39349] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39355] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39361] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39367] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39373] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [39379] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39385] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39391] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39397] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39403] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39409] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39415] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39421] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39427] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [39433] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39439] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39445] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39451] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39457] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39463] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39469] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39475] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39481] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39487] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39493] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39499] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39505] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39511] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39517] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39523] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39529] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39535] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39541] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39547] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39553] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39559] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39565] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39571] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39577] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39583] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39589] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39595] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [39601] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39607] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39613] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39619] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39625] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39631] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39637] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39643] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39649] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39655] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39661] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39667] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39673] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39679] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39685] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39691] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39697] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39703] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [39709] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39715] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39721] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39727] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39733] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39739] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39745] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39751] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39757] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [39763] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [39769] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39775] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39781] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39787] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39793] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39799] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39805] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39811] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39817] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [39823] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39829] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39835] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39841] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39847] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39853] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39859] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39865] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39871] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [39877] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39883] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39889] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39895] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39901] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39907] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39913] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39919] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39925] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [39931] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [39937] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39943] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39949] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39955] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39961] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39967] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39973] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39979] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39985] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [39991] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [39997] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40003] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40009] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40015] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40021] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40027] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40033] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40039] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40045] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40051] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40057] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40063] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40069] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40075] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40081] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40087] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40093] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40099] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [40105] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40111] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40117] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40123] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40129] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40135] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40141] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40147] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40153] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40159] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40165] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40171] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40177] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40183] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40189] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40195] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40201] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40207] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40213] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40219] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40225] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40231] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40237] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40243] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40249] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40255] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40261] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40267] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [40273] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40279] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40285] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40291] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40297] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40303] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40309] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40315] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40321] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40327] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40333] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40339] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40345] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40351] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40357] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40363] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40369] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40375] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40381] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [40387] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40393] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40399] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40405] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40411] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40417] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40423] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40429] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40435] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [40441] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40447] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40453] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40459] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40465] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40471] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40477] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40483] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40489] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40495] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40501] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40507] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40513] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40519] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40525] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40531] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40537] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40543] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40549] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [40555] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40561] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40567] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40573] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40579] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40585] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40591] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40597] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40603] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [40609] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40615] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40621] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40627] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40633] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40639] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40645] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40651] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40657] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [40663] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40669] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40675] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40681] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40687] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40693] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40699] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40705] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40711] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [40717] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40723] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40729] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40735] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40741] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40747] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40753] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40759] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40765] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [40771] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [40777] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40783] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40789] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40795] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40801] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40807] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40813] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40819] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40825] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [40831] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40837] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40843] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40849] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40855] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40861] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40867] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40873] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40879] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [40885] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40891] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40897] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40903] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40909] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40915] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40921] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40927] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40933] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [40939] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [40945] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40951] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40957] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40963] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40969] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40975] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40981] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40987] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40993] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [40999] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41005] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41011] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41017] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41023] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41029] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41035] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41041] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41047] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41053] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41059] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41065] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41071] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41077] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41083] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41089] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41095] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41101] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41107] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [41113] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41119] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41125] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41131] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41137] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41143] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41149] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41155] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41161] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41167] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41173] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41179] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41185] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41191] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41197] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41203] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41209] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41215] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41221] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41227] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41233] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41239] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41245] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41251] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41257] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41263] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41269] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41275] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [41281] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41287] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41293] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41299] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41305] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41311] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41317] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41323] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41329] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41335] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41341] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41347] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41353] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41359] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41365] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41371] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41377] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41383] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41389] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41395] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41401] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41407] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41413] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41419] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41425] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41431] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41437] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41443] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [41449] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41455] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41461] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41467] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41473] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41479] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41485] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41491] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41497] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41503] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41509] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41515] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41521] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41527] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41533] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41539] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41545] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41551] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41557] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [41563] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41569] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41575] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41581] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41587] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41593] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41599] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41605] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41611] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [41617] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41623] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41629] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41635] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41641] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41647] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41653] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41659] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41665] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [41671] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41677] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41683] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41689] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41695] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41701] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41707] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41713] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41719] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [41725] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [41731] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41737] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41743] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41749] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41755] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41761] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41767] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41773] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [41779] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [41785] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41791] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41797] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41803] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41809] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41815] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41821] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41827] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41833] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [41839] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41845] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41851] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41857] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41863] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41869] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41875] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41881] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41887] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [41893] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41899] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41905] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41911] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41917] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41923] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41929] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41935] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41941] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [41947] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [41953] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41959] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41965] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41971] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41977] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41983] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41989] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [41995] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42001] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42007] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42013] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42019] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42025] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42031] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42037] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42043] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42049] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42055] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42061] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42067] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42073] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42079] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42085] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42091] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42097] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42103] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42109] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42115] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [42121] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42127] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42133] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42139] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42145] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42151] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42157] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42163] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42169] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42175] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42181] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42187] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42193] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42199] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42205] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42211] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42217] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42223] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42229] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42235] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42241] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42247] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42253] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42259] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42265] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42271] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42277] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42283] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [42289] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42295] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42301] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42307] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42313] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42319] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42325] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42331] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42337] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42343] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42349] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42355] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42361] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42367] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42373] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42379] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42385] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42391] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42397] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42403] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42409] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42415] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42421] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42427] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42433] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42439] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42445] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42451] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [42457] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42463] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42469] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42475] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42481] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42487] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42493] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42499] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42505] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42511] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42517] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42523] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42529] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42535] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42541] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42547] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42553] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42559] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42565] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42571] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42577] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42583] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42589] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42595] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42601] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42607] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42613] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42619] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [42625] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42631] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42637] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42643] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42649] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42655] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42661] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42667] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42673] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [42679] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42685] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42691] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42697] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42703] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42709] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42715] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42721] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42727] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [42733] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [42739] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42745] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42751] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42757] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42763] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42769] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42775] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42781] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [42787] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [42793] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42799] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42805] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42811] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42817] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42823] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42829] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42835] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42841] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [42847] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42853] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42859] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42865] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42871] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42877] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42883] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42889] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42895] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [42901] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [42907] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42913] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42919] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42925] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42931] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42937] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42943] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42949] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [42955] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [42961] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42967] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42973] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42979] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42985] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42991] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [42997] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43003] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43009] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43015] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43021] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43027] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43033] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43039] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43045] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43051] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43057] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43063] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43069] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43075] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43081] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43087] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43093] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43099] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43105] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43111] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43117] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43123] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [43129] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43135] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43141] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43147] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43153] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43159] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43165] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43171] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43177] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43183] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43189] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43195] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43201] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43207] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43213] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43219] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43225] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43231] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43237] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43243] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43249] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43255] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43261] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43267] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43273] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43279] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43285] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43291] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [43297] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43303] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43309] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43315] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43321] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43327] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43333] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43339] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43345] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43351] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43357] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43363] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43369] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43375] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43381] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43387] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43393] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43399] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43405] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43411] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43417] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43423] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43429] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43435] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43441] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43447] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43453] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43459] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [43465] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43471] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43477] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43483] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43489] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43495] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43501] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43507] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43513] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43519] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43525] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43531] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43537] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43543] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43549] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43555] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43561] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43567] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43573] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43579] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43585] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43591] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43597] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43603] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43609] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43615] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43621] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43627] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [43633] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43639] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43645] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43651] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43657] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43663] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43669] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43675] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43681] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [43687] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43693] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43699] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43705] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43711] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43717] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43723] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43729] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43735] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [43741] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43747] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43753] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43759] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43765] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43771] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43777] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43783] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43789] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [43795] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [43801] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43807] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43813] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43819] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43825] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43831] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43837] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43843] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43849] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [43855] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43861] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43867] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43873] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43879] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43885] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43891] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43897] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43903] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [43909] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [43915] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43921] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43927] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43933] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43939] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43945] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43951] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43957] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [43963] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [43969] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43975] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43981] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43987] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43993] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [43999] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44005] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44011] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44017] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44023] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44029] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44035] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44041] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44047] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44053] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44059] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44065] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44071] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44077] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [44083] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44089] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44095] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44101] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44107] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44113] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44119] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44125] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44131] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [44137] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44143] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44149] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44155] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44161] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44167] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44173] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44179] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44185] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44191] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44197] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44203] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44209] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44215] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44221] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44227] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44233] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44239] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44245] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44251] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44257] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44263] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44269] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44275] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44281] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44287] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44293] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44299] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [44305] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44311] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44317] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44323] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44329] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44335] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44341] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44347] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44353] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44359] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44365] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44371] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44377] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44383] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44389] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44395] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44401] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44407] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44413] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44419] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44425] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44431] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44437] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44443] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44449] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44455] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44461] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44467] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [44473] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44479] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44485] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44491] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44497] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44503] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44509] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44515] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44521] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44527] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44533] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44539] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44545] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44551] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44557] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44563] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44569] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44575] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44581] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44587] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44593] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44599] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44605] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44611] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44617] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44623] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44629] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44635] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [44641] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44647] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44653] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44659] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44665] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44671] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44677] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44683] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44689] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [44695] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44701] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44707] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44713] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44719] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44725] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44731] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44737] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44743] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [44749] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44755] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44761] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44767] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44773] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44779] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44785] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44791] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44797] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [44803] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [44809] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44815] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44821] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44827] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44833] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44839] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44845] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44851] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44857] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [44863] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44869] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44875] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44881] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44887] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44893] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44899] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44905] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44911] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [44917] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44923] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44929] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44935] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44941] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44947] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44953] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44959] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44965] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [44971] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [44977] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44983] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44989] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [44995] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45001] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45007] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45013] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45019] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45025] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45031] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45037] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45043] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45049] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45055] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45061] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45067] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45073] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45079] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45085] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [45091] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45097] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45103] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45109] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45115] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45121] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45127] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45133] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45139] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [45145] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45151] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45157] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45163] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45169] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45175] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45181] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45187] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45193] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45199] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45205] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45211] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45217] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45223] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45229] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45235] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45241] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45247] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45253] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [45259] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45265] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45271] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45277] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45283] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45289] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45295] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45301] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45307] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [45313] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45319] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45325] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45331] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45337] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45343] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45349] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45355] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45361] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45367] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45373] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45379] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45385] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45391] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45397] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45403] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45409] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45415] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45421] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45427] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45433] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45439] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45445] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45451] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45457] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45463] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45469] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45475] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [45481] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45487] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45493] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45499] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45505] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45511] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45517] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45523] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45529] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45535] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45541] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45547] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45553] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45559] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45565] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45571] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45577] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45583] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45589] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45595] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45601] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45607] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45613] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45619] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45625] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45631] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45637] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45643] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [45649] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45655] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45661] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45667] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45673] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45679] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45685] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45691] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45697] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [45703] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45709] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45715] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45721] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45727] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45733] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45739] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45745] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45751] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [45757] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45763] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45769] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45775] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45781] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45787] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45793] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45799] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45805] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [45811] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [45817] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45823] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45829] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45835] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45841] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45847] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45853] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45859] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45865] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [45871] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45877] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45883] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45889] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45895] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45901] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45907] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45913] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45919] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [45925] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45931] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45937] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45943] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45949] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45955] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45961] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45967] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45973] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [45979] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [45985] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45991] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [45997] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46003] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46009] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46015] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46021] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46027] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46033] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46039] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46045] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46051] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46057] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46063] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46069] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46075] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46081] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46087] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46093] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46099] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46105] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46111] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46117] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46123] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46129] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46135] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46141] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46147] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [46153] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46159] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46165] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46171] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46177] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46183] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46189] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46195] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46201] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46207] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46213] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46219] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46225] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46231] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46237] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46243] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46249] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46255] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46261] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [46267] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46273] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46279] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46285] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46291] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46297] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46303] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46309] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46315] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [46321] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46327] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46333] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46339] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46345] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46351] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46357] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46363] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46369] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46375] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46381] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46387] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46393] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46399] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46405] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46411] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46417] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46423] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46429] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [46435] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46441] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46447] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46453] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46459] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46465] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46471] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46477] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46483] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [46489] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46495] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46501] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46507] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46513] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46519] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46525] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46531] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46537] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46543] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46549] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46555] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46561] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46567] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46573] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46579] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46585] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46591] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46597] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46603] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46609] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46615] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46621] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46627] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46633] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46639] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46645] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46651] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [46657] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46663] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46669] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46675] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46681] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46687] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46693] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46699] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46705] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [46711] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46717] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46723] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46729] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46735] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46741] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46747] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46753] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46759] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [46765] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46771] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46777] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46783] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46789] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46795] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46801] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46807] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46813] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [46819] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [46825] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46831] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46837] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46843] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46849] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46855] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46861] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46867] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46873] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [46879] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46885] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46891] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46897] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46903] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46909] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46915] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46921] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46927] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [46933] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46939] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46945] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46951] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46957] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46963] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46969] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46975] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46981] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [46987] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [46993] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [46999] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47005] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47011] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47017] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47023] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47029] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47035] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47041] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47047] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47053] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47059] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47065] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47071] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47077] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47083] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47089] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47095] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47101] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47107] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47113] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47119] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47125] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47131] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47137] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47143] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47149] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47155] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [47161] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47167] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47173] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47179] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47185] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47191] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47197] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47203] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47209] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47215] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47221] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47227] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47233] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47239] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47245] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47251] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47257] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47263] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47269] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47275] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47281] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47287] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47293] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47299] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47305] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47311] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47317] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47323] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [47329] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47335] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47341] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47347] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47353] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47359] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47365] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47371] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47377] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47383] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47389] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47395] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47401] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47407] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47413] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47419] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47425] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47431] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47437] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [47443] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47449] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47455] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47461] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47467] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47473] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47479] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47485] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47491] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [47497] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47503] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47509] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47515] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47521] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47527] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47533] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47539] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47545] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47551] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47557] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47563] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47569] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47575] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47581] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47587] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47593] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47599] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47605] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [47611] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47617] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47623] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47629] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47635] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47641] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47647] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47653] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [47659] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [47665] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47671] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47677] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47683] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47689] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47695] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47701] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47707] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47713] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [47719] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47725] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47731] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47737] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47743] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47749] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47755] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47761] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47767] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [47773] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47779] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47785] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47791] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47797] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47803] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47809] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47815] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47821] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [47827] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [47833] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47839] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47845] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47851] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47857] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47863] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47869] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47875] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47881] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [47887] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47893] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47899] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47905] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47911] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47917] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47923] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47929] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47935] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [47941] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47947] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47953] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47959] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47965] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47971] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47977] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47983] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47989] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [47995] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [48001] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48007] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48013] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48019] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48025] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48031] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48037] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48043] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48049] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48055] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48061] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48067] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48073] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48079] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48085] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48091] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48097] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48103] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48109] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48115] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48121] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48127] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48133] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48139] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48145] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48151] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48157] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48163] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [48169] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48175] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48181] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48187] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48193] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48199] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48205] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48211] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48217] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48223] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48229] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48235] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48241] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48247] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48253] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48259] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48265] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48271] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48277] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48283] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48289] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48295] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48301] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48307] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48313] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48319] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48325] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48331] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [48337] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48343] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48349] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48355] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48361] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48367] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48373] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48379] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48385] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48391] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48397] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48403] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48409] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48415] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48421] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48427] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48433] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48439] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48445] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48451] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48457] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48463] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48469] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48475] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48481] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48487] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48493] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48499] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [48505] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48511] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48517] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48523] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48529] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48535] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48541] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48547] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48553] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48559] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48565] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48571] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48577] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48583] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48589] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48595] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48601] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48607] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48613] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [48619] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48625] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48631] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48637] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48643] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48649] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48655] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48661] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [48667] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [48673] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48679] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48685] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48691] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48697] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48703] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48709] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48715] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48721] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [48727] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48733] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48739] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48745] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48751] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48757] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48763] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48769] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48775] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [48781] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [48787] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48793] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48799] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48805] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48811] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48817] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48823] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48829] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [48835] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [48841] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48847] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48853] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48859] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48865] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48871] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48877] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48883] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48889] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [48895] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48901] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48907] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48913] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48919] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48925] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48931] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48937] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48943] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [48949] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48955] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48961] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48967] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48973] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48979] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48985] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48991] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [48997] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49003] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [49009] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49015] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49021] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49027] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49033] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49039] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49045] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49051] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49057] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49063] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49069] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49075] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49081] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49087] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49093] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49099] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49105] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49111] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49117] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49123] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49129] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49135] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49141] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49147] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49153] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49159] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49165] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49171] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [49177] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49183] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49189] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49195] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49201] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49207] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49213] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49219] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49225] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49231] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49237] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49243] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49249] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49255] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49261] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49267] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49273] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49279] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49285] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49291] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49297] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49303] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49309] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49315] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49321] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49327] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49333] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49339] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [49345] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49351] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49357] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49363] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49369] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49375] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49381] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49387] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49393] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49399] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49405] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49411] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49417] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49423] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49429] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49435] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49441] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49447] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49453] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49459] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49465] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49471] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49477] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49483] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49489] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49495] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49501] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49507] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [49513] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49519] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49525] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49531] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49537] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49543] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49549] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49555] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49561] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49567] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49573] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49579] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49585] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49591] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49597] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49603] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49609] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49615] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49621] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49627] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49633] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49639] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49645] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49651] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49657] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49663] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49669] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [49675] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [49681] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49687] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49693] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49699] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49705] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49711] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49717] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49723] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49729] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [49735] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49741] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49747] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49753] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49759] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49765] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49771] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49777] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49783] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [49789] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [49795] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49801] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49807] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49813] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49819] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49825] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49831] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49837] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [49843] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [49849] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49855] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49861] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49867] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49873] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49879] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49885] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49891] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49897] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [49903] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49909] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49915] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49921] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49927] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49933] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49939] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49945] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49951] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [49957] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [49963] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49969] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49975] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49981] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49987] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49993] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [49999] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50005] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50011] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [50017] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50023] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50029] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50035] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50041] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50047] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50053] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50059] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50065] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50071] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50077] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50083] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50089] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50095] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50101] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50107] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50113] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50119] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50125] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50131] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50137] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50143] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50149] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50155] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50161] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50167] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50173] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50179] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [50185] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50191] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50197] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50203] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50209] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50215] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50221] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50227] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50233] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50239] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50245] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50251] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50257] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50263] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50269] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50275] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50281] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50287] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50293] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50299] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50305] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50311] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50317] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50323] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50329] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50335] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50341] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50347] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [50353] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50359] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50365] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50371] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50377] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50383] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50389] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50395] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50401] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50407] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50413] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50419] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50425] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50431] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50437] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50443] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50449] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50455] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50461] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50467] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50473] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50479] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50485] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50491] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50497] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50503] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50509] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50515] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [50521] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50527] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50533] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50539] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50545] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50551] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50557] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50563] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50569] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50575] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50581] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50587] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50593] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50599] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50605] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50611] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50617] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50623] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50629] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50635] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50641] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50647] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50653] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50659] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50665] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50671] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50677] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [50683] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [50689] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50695] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50701] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50707] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50713] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50719] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50725] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50731] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50737] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [50743] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50749] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50755] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50761] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50767] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50773] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50779] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50785] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50791] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [50797] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50803] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50809] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50815] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50821] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50827] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50833] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50839] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50845] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [50851] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [50857] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50863] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50869] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50875] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50881] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50887] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50893] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50899] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50905] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [50911] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50917] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50923] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50929] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50935] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50941] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50947] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50953] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50959] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [50965] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [50971] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50977] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50983] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50989] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [50995] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51001] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51007] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51013] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51019] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [51025] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51031] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51037] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51043] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51049] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51055] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51061] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51067] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51073] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51079] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51085] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51091] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51097] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51103] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51109] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51115] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51121] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51127] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51133] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [51139] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51145] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51151] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51157] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51163] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51169] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51175] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51181] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51187] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [51193] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51199] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51205] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51211] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51217] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51223] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51229] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51235] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51241] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51247] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51253] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51259] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51265] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51271] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51277] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51283] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51289] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51295] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51301] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51307] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51313] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51319] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51325] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51331] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51337] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51343] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51349] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51355] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [51361] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51367] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51373] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51379] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51385] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51391] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51397] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51403] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51409] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51415] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51421] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51427] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51433] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51439] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51445] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51451] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51457] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51463] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51469] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51475] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51481] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51487] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51493] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51499] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51505] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51511] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51517] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51523] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [51529] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51535] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51541] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51547] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51553] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51559] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51565] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51571] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51577] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51583] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51589] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51595] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51601] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51607] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51613] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51619] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51625] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51631] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51637] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51643] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51649] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51655] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51661] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51667] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51673] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51679] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51685] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [51691] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [51697] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51703] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51709] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51715] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51721] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51727] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51733] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51739] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51745] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [51751] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51757] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51763] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51769] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51775] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51781] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51787] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51793] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51799] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [51805] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51811] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51817] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51823] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51829] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51835] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51841] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51847] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51853] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [51859] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [51865] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51871] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51877] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51883] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51889] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51895] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51901] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51907] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51913] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [51919] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51925] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51931] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51937] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51943] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51949] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51955] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51961] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51967] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [51973] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51979] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51985] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51991] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [51997] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52003] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52009] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52015] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52021] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52027] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [52033] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52039] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52045] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52051] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52057] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52063] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52069] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52075] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52081] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52087] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52093] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52099] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52105] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52111] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52117] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52123] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52129] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52135] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52141] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [52147] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52153] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52159] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52165] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52171] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52177] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52183] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52189] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52195] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [52201] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52207] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52213] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52219] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52225] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52231] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52237] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52243] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52249] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52255] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52261] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52267] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52273] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52279] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52285] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52291] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52297] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52303] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52309] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [52315] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52321] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52327] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52333] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52339] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52345] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52351] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52357] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52363] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [52369] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52375] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52381] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52387] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52393] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52399] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52405] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52411] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52417] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52423] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52429] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52435] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52441] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52447] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52453] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52459] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52465] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52471] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52477] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52483] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52489] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52495] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52501] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52507] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52513] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52519] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52525] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52531] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [52537] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52543] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52549] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52555] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52561] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52567] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52573] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52579] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52585] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52591] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52597] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52603] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52609] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52615] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52621] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52627] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52633] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52639] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52645] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52651] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52657] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52663] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52669] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52675] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52681] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52687] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52693] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [52699] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [52705] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52711] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52717] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52723] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52729] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52735] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52741] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52747] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52753] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [52759] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52765] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52771] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52777] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52783] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52789] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52795] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52801] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52807] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [52813] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52819] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52825] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52831] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52837] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52843] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52849] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52855] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52861] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [52867] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [52873] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52879] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52885] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52891] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52897] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52903] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52909] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52915] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52921] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [52927] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52933] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52939] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52945] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52951] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52957] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52963] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52969] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52975] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [52981] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52987] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52993] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [52999] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53005] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53011] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53017] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53023] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53029] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53035] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [53041] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53047] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53053] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53059] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53065] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53071] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53077] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53083] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53089] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53095] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53101] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53107] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53113] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53119] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53125] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53131] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53137] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53143] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53149] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53155] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53161] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53167] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53173] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53179] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53185] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53191] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53197] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53203] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [53209] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53215] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53221] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53227] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53233] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53239] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53245] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53251] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53257] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53263] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53269] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53275] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53281] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53287] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53293] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53299] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53305] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53311] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53317] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [53323] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53329] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53335] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53341] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53347] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53353] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53359] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53365] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53371] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [53377] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53383] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53389] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53395] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53401] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53407] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53413] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53419] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53425] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53431] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53437] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53443] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53449] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53455] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53461] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53467] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53473] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53479] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53485] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [53491] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53497] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53503] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53509] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53515] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53521] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53527] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53533] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53539] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [53545] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53551] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53557] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53563] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53569] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53575] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53581] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53587] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53593] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53599] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53605] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53611] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53617] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53623] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53629] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53635] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53641] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53647] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53653] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53659] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53665] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53671] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53677] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53683] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53689] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53695] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53701] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [53707] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [53713] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53719] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53725] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53731] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53737] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53743] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53749] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53755] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53761] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [53767] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53773] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53779] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53785] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53791] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53797] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53803] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53809] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53815] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [53821] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53827] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53833] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53839] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53845] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53851] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53857] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53863] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53869] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [53875] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [53881] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53887] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53893] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53899] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53905] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53911] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53917] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53923] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53929] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [53935] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53941] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53947] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53953] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53959] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53965] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53971] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53977] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53983] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [53989] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [53995] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54001] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54007] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54013] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54019] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54025] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54031] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54037] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54043] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [54049] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54055] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54061] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54067] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54073] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54079] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54085] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54091] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54097] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54103] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54109] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54115] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54121] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54127] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54133] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54139] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54145] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54151] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54157] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54163] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54169] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54175] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54181] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54187] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54193] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54199] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54205] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54211] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [54217] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54223] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54229] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54235] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54241] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54247] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54253] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54259] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54265] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54271] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54277] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54283] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54289] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54295] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54301] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54307] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54313] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54319] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54325] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54331] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54337] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54343] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54349] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54355] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54361] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54367] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54373] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54379] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [54385] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54391] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54397] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54403] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54409] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54415] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54421] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54427] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54433] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54439] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54445] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54451] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54457] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54463] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54469] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54475] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54481] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54487] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54493] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [54499] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54505] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54511] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54517] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54523] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54529] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54535] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54541] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54547] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [54553] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54559] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54565] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54571] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54577] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54583] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54589] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54595] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54601] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54607] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54613] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54619] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54625] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54631] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54637] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54643] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54649] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54655] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [54661] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [54667] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54673] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54679] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54685] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54691] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54697] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54703] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54709] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [54715] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [54721] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54727] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54733] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54739] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54745] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54751] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54757] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54763] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54769] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [54775] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54781] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54787] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54793] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54799] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54805] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54811] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54817] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54823] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [54829] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54835] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54841] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54847] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54853] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54859] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54865] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54871] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54877] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [54883] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [54889] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54895] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54901] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54907] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54913] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54919] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54925] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54931] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54937] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [54943] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54949] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54955] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54961] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54967] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54973] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54979] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54985] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54991] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [54997] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55003] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55009] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55015] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55021] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55027] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55033] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55039] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55045] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55051] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [55057] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55063] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55069] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55075] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55081] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55087] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55093] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55099] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55105] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55111] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55117] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55123] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55129] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55135] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55141] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55147] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55153] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55159] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55165] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55171] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55177] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55183] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55189] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55195] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55201] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55207] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55213] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55219] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [55225] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55231] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55237] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55243] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55249] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55255] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55261] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55267] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55273] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55279] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55285] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55291] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55297] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55303] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55309] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55315] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55321] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55327] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55333] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55339] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55345] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55351] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55357] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55363] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55369] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55375] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55381] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55387] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [55393] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55399] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55405] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55411] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55417] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55423] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55429] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55435] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55441] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55447] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55453] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55459] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55465] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55471] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55477] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55483] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55489] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55495] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55501] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55507] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55513] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55519] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55525] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55531] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55537] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55543] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55549] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55555] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [55561] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55567] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55573] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55579] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55585] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55591] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55597] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55603] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55609] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55615] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55621] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55627] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55633] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55639] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55645] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55651] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55657] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55663] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [55669] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [55675] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55681] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55687] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55693] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55699] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55705] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55711] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55717] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [55723] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [55729] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55735] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55741] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55747] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55753] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55759] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55765] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55771] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55777] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [55783] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55789] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55795] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55801] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55807] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55813] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55819] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55825] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55831] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [55837] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [55843] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55849] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55855] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55861] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55867] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55873] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55879] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55885] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [55891] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [55897] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55903] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55909] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55915] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55921] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55927] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55933] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55939] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55945] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [55951] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55957] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55963] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55969] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55975] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55981] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55987] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55993] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [55999] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56005] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56011] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56017] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56023] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56029] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56035] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56041] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56047] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56053] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56059] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [56065] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56071] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56077] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56083] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56089] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56095] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56101] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56107] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56113] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56119] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56125] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56131] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56137] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56143] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56149] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56155] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56161] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56167] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56173] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56179] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56185] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56191] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56197] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56203] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56209] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56215] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56221] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56227] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [56233] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56239] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56245] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56251] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56257] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56263] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56269] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56275] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56281] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56287] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56293] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56299] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56305] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56311] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56317] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56323] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56329] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56335] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56341] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56347] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56353] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56359] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56365] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56371] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56377] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56383] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56389] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56395] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [56401] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56407] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56413] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56419] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56425] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56431] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56437] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56443] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56449] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56455] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56461] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56467] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56473] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56479] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56485] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56491] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56497] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56503] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56509] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56515] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56521] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56527] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56533] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56539] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56545] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56551] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56557] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56563] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [56569] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56575] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56581] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56587] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56593] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56599] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56605] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56611] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56617] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56623] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56629] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56635] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56641] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56647] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56653] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56659] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56665] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56671] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [56677] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56683] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56689] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56695] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56701] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56707] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56713] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56719] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56725] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [56731] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [56737] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56743] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56749] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56755] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56761] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56767] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56773] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56779] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56785] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [56791] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56797] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56803] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56809] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56815] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56821] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56827] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56833] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56839] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [56845] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [56851] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56857] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56863] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56869] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56875] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56881] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56887] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56893] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [56899] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [56905] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56911] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56917] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56923] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56929] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56935] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56941] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56947] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56953] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [56959] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56965] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56971] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56977] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56983] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56989] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [56995] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57001] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57007] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57013] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [57019] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57025] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57031] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57037] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57043] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57049] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57055] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57061] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57067] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [57073] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57079] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57085] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57091] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57097] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57103] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57109] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57115] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57121] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57127] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57133] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57139] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57145] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57151] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57157] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57163] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57169] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57175] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57181] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57187] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57193] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57199] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57205] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57211] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57217] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57223] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57229] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57235] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [57241] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57247] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57253] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57259] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57265] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57271] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57277] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57283] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57289] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57295] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57301] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57307] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57313] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57319] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57325] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57331] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57337] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57343] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57349] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57355] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57361] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57367] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57373] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57379] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57385] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57391] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57397] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57403] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [57409] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57415] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57421] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57427] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57433] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57439] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57445] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57451] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57457] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57463] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57469] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57475] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57481] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57487] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57493] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57499] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57505] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57511] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57517] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57523] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57529] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57535] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57541] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57547] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57553] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57559] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57565] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57571] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [57577] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57583] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57589] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57595] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57601] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57607] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57613] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57619] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57625] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57631] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57637] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57643] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57649] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57655] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57661] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57667] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57673] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57679] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [57685] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57691] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57697] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57703] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57709] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57715] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57721] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57727] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57733] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [57739] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [57745] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57751] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57757] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57763] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57769] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57775] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57781] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57787] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57793] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [57799] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57805] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57811] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57817] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57823] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57829] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57835] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57841] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57847] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [57853] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57859] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57865] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57871] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57877] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57883] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57889] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57895] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57901] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [57907] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [57913] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57919] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57925] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57931] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57937] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57943] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57949] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57955] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57961] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [57967] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57973] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57979] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57985] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57991] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [57997] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58003] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58009] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58015] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58021] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [58027] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58033] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58039] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58045] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58051] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58057] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58063] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58069] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58075] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [58081] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58087] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58093] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58099] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58105] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58111] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58117] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58123] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58129] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58135] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58141] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58147] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58153] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58159] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58165] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58171] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58177] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58183] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58189] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [58195] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58201] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58207] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58213] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58219] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58225] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58231] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58237] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58243] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [58249] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58255] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58261] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58267] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58273] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58279] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58285] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58291] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58297] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58303] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58309] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58315] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58321] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58327] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58333] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58339] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58345] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58351] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58357] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58363] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58369] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58375] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58381] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58387] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58393] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58399] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58405] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58411] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [58417] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58423] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58429] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58435] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58441] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58447] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58453] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58459] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58465] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58471] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58477] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58483] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58489] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58495] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58501] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58507] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58513] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58519] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58525] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58531] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58537] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58543] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58549] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58555] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58561] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58567] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58573] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58579] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [58585] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58591] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58597] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58603] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58609] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58615] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58621] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58627] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58633] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58639] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58645] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58651] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58657] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58663] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58669] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58675] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58681] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58687] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [58693] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58699] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58705] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58711] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58717] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58723] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58729] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58735] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58741] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [58747] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [58753] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58759] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58765] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58771] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58777] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58783] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58789] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58795] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58801] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [58807] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58813] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58819] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58825] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58831] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58837] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58843] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58849] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58855] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [58861] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58867] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58873] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58879] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58885] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58891] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58897] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58903] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58909] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [58915] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [58921] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58927] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58933] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58939] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58945] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58951] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58957] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58963] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58969] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [58975] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58981] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58987] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58993] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [58999] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59005] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59011] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59017] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59023] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59029] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59035] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59041] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59047] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59053] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59059] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59065] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59071] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59077] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59083] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [59089] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59095] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59101] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59107] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59113] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59119] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59125] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59131] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59137] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59143] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59149] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59155] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59161] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59167] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59173] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59179] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59185] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59191] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59197] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [59203] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59209] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59215] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59221] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59227] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59233] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59239] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59245] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59251] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [59257] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59263] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59269] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59275] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59281] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59287] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59293] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59299] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59305] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59311] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59317] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59323] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59329] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59335] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59341] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59347] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59353] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59359] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59365] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [59371] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59377] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59383] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59389] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59395] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59401] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59407] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59413] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59419] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [59425] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59431] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59437] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59443] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59449] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59455] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59461] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59467] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59473] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59479] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59485] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59491] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59497] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59503] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59509] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59515] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59521] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59527] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59533] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59539] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59545] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59551] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59557] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59563] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59569] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59575] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59581] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59587] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [59593] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59599] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59605] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59611] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59617] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59623] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59629] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59635] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59641] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59647] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59653] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59659] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59665] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59671] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59677] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59683] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59689] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59695] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [59701] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59707] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59713] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59719] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59725] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59731] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59737] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59743] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59749] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [59755] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [59761] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59767] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59773] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59779] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59785] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59791] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59797] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59803] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59809] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [59815] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59821] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59827] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59833] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59839] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59845] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59851] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59857] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59863] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [59869] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59875] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59881] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59887] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59893] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59899] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59905] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59911] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59917] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [59923] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [59929] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59935] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59941] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59947] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59953] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59959] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59965] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59971] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59977] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [59983] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59989] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [59995] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60001] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60007] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60013] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60019] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60025] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60031] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60037] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60043] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60049] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60055] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60061] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60067] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60073] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60079] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60085] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60091] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [60097] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60103] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60109] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60115] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60121] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60127] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60133] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60139] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60145] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60151] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60157] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60163] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60169] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60175] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60181] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60187] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60193] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60199] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60205] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60211] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60217] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60223] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60229] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60235] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60241] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60247] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60253] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60259] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [60265] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60271] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60277] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60283] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60289] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60295] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60301] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60307] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60313] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60319] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60325] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60331] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60337] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60343] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60349] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60355] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60361] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60367] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60373] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [60379] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60385] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60391] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60397] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60403] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60409] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60415] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60421] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60427] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [60433] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60439] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60445] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60451] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60457] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60463] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60469] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60475] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60481] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60487] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60493] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60499] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60505] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60511] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60517] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60523] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60529] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60535] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60541] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [60547] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60553] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60559] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60565] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60571] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60577] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60583] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60589] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60595] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [60601] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60607] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60613] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60619] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60625] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60631] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60637] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60643] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60649] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60655] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60661] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60667] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60673] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60679] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60685] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60691] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60697] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60703] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [60709] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60715] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60721] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60727] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60733] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60739] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60745] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60751] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60757] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [60763] "Thursday" "Thursday" "Thursday" "Thursday" "Friday" "Friday"
## [60769] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60775] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60781] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60787] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60793] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60799] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60805] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60811] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60817] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [60823] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60829] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60835] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60841] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60847] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60853] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60859] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60865] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60871] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [60877] "Saturday" "Saturday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60883] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60889] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60895] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60901] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60907] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60913] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60919] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60925] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [60931] "Sunday" "Sunday" "Sunday" "Sunday" "Monday" "Monday"
## [60937] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60943] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60949] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60955] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60961] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60967] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60973] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60979] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60985] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [60991] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [60997] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61003] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61009] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61015] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61021] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61027] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61033] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61039] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61045] "Tuesday" "Tuesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61051] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61057] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61063] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61069] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61075] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61081] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61087] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61093] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61099] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Thursday" "Thursday"
## [61105] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61111] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61117] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61123] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61129] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61135] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61141] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61147] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61153] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61159] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61165] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61171] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61177] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61183] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61189] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61195] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61201] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61207] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61213] "Friday" "Friday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61219] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61225] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61231] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61237] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61243] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61249] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61255] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61261] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61267] "Saturday" "Saturday" "Saturday" "Saturday" "Sunday" "Sunday"
## [61273] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61279] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61285] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61291] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61297] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61303] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61309] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61315] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61321] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61327] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61333] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61339] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61345] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61351] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61357] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61363] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61369] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61375] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61381] "Monday" "Monday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61387] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61393] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61399] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61405] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61411] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61417] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61423] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61429] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61435] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Wednesday" "Wednesday"
## [61441] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61447] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61453] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61459] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61465] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61471] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61477] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61483] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61489] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61495] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61501] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61507] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61513] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61519] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61525] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61531] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61537] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61543] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61549] "Thursday" "Thursday" "Friday" "Friday" "Friday" "Friday"
## [61555] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61561] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61567] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61573] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61579] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61585] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61591] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61597] "Friday" "Friday" "Friday" "Friday" "Friday" "Friday"
## [61603] "Friday" "Friday" "Friday" "Friday" "Saturday" "Saturday"
## [61609] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61615] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61621] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61627] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61633] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61639] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61645] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61651] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61657] "Saturday" "Saturday" "Saturday" "Saturday" "Saturday" "Saturday"
## [61663] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61669] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61675] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61681] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61687] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61693] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61699] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61705] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61711] "Sunday" "Sunday" "Sunday" "Sunday" "Sunday" "Sunday"
## [61717] "Sunday" "Sunday" "Monday" "Monday" "Monday" "Monday"
## [61723] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61729] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61735] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61741] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61747] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61753] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61759] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61765] "Monday" "Monday" "Monday" "Monday" "Monday" "Monday"
## [61771] "Monday" "Monday" "Monday" "Monday" "Tuesday" "Tuesday"
## [61777] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61783] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61789] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61795] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61801] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61807] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61813] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61819] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61825] "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday" "Tuesday"
## [61831] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61837] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61843] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61849] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61855] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61861] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61867] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61873] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61879] "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday" "Wednesday"
## [61885] "Wednesday" "Wednesday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61891] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61897] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61903] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61909] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61915] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61921] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61927] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61933] "Thursday" "Thursday" "Thursday" "Thursday" "Thursday" "Thursday"
## [61939] "Thursday" "Thursday" "Thursday" "Thursday"
death2 variable taking
the values as followshas_death if there is a death that dayno_death if there is no death that daylibrary(dplyr)
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
df$death2 <- case_when(df$Deaths==0 ~ 'no_death',
df$Deaths > 0 ~ 'has_death')
df$death2
## [1] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [7] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [13] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [19] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [25] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [31] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [37] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [43] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [49] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [55] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [61] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [67] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [73] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [79] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [85] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [91] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [97] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [103] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [109] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [115] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [121] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [127] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [133] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [139] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [145] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [151] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [157] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [163] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [169] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [175] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [181] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [187] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [193] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [199] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [205] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [211] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [217] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [223] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [229] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [235] "no_death" "no_death" "no_death" "no_death" "has_death" "no_death"
## [241] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [247] "no_death" "no_death" "no_death" "no_death" "no_death" "has_death"
## [253] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [259] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [265] "no_death" "no_death" "has_death" "no_death" "no_death" "no_death"
## [271] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [277] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [283] "has_death" "no_death" "no_death" "has_death" "no_death" "no_death"
## [289] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [295] "no_death" "no_death" "no_death" "no_death" "no_death" "has_death"
## [301] "no_death" "no_death" "has_death" "no_death" "no_death" "no_death"
## [307] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [313] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [319] "no_death" "no_death" "has_death" "no_death" "no_death" "has_death"
## [325] "no_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [331] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [337] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [343] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [349] "has_death" "no_death" "no_death" "has_death" "no_death" "no_death"
## [355] "has_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [361] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [367] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [373] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [379] "no_death" "no_death" "no_death" "has_death" "no_death" "no_death"
## [385] "has_death" "no_death" "no_death" "no_death" "has_death" "no_death"
## [391] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [397] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [403] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [409] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [415] "no_death" "no_death" "has_death" "no_death" "no_death" "has_death"
## [421] "no_death" "no_death" "no_death" "has_death" "no_death" "no_death"
## [427] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [433] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [439] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [445] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [451] "no_death" "no_death" "no_death" "has_death" "no_death" "no_death"
## [457] "has_death" "no_death" "no_death" "no_death" "has_death" "no_death"
## [463] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [469] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [475] "no_death" "no_death" "no_death" "has_death" "no_death" "no_death"
## [481] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [487] "has_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [493] "has_death" "no_death" "no_death" "no_death" "has_death" "no_death"
## [499] "no_death" "no_death" "no_death" "has_death" "no_death" "no_death"
## [505] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [511] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [517] "no_death" "no_death" "no_death" "has_death" "no_death" "no_death"
## [523] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [529] "no_death" "no_death" "has_death" "no_death" "no_death" "no_death"
## [535] "no_death" "no_death" "has_death" "no_death" "no_death" "no_death"
## [541] "no_death" "no_death" "has_death" "has_death" "no_death" "no_death"
## [547] "no_death" "has_death" "has_death" "no_death" "no_death" "no_death"
## [553] "no_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [559] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [565] "no_death" "no_death" "has_death" "no_death" "no_death" "no_death"
## [571] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [577] "no_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [583] "no_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [589] "no_death" "no_death" "has_death" "has_death" "no_death" "no_death"
## [595] "no_death" "has_death" "has_death" "no_death" "no_death" "no_death"
## [601] "no_death" "no_death" "has_death" "no_death" "no_death" "no_death"
## [607] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [613] "no_death" "no_death" "no_death" "no_death" "has_death" "no_death"
## [619] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [625] "no_death" "no_death" "no_death" "no_death" "has_death" "no_death"
## [631] "no_death" "no_death" "no_death" "no_death" "has_death" "no_death"
## [637] "no_death" "no_death" "no_death" "no_death" "no_death" "has_death"
## [643] "has_death" "no_death" "no_death" "no_death" "has_death" "has_death"
## [649] "no_death" "no_death" "no_death" "no_death" "no_death" "has_death"
## [655] "no_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [661] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [667] "no_death" "has_death" "no_death" "has_death" "no_death" "no_death"
## [673] "no_death" "no_death" "has_death" "no_death" "no_death" "no_death"
## [679] "no_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [685] "no_death" "has_death" "has_death" "no_death" "no_death" "no_death"
## [691] "no_death" "no_death" "no_death" "has_death" "has_death" "no_death"
## [697] "no_death" "no_death" "has_death" "has_death" "no_death" "no_death"
## [703] "no_death" "no_death" "no_death" "no_death" "has_death" "no_death"
## [709] "has_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [715] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [721] "has_death" "no_death" "has_death" "no_death" "no_death" "no_death"
## [727] "no_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [733] "has_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [739] "has_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [745] "no_death" "no_death" "has_death" "has_death" "no_death" "no_death"
## [751] "no_death" "has_death" "has_death" "no_death" "no_death" "no_death"
## [757] "no_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [763] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [769] "no_death" "no_death" "no_death" "has_death" "no_death" "has_death"
## [775] "no_death" "has_death" "no_death" "no_death" "no_death" "no_death"
## [781] "has_death" "no_death" "no_death" "no_death" "has_death" "has_death"
## [787] "no_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [793] "has_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [799] "no_death" "has_death" "has_death" "no_death" "no_death" "no_death"
## [805] "has_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [811] "has_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [817] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [823] "no_death" "no_death" "has_death" "no_death" "has_death" "no_death"
## [829] "has_death" "no_death" "no_death" "no_death" "no_death" "has_death"
## [835] "no_death" "no_death" "no_death" "has_death" "has_death" "no_death"
## [841] "has_death" "no_death" "no_death" "no_death" "has_death" "has_death"
## [847] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [853] "no_death" "has_death" "has_death" "has_death" "no_death" "no_death"
## [859] "has_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [865] "has_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [871] "has_death" "no_death" "has_death" "no_death" "no_death" "has_death"
## [877] "no_death" "no_death" "has_death" "no_death" "has_death" "no_death"
## [883] "has_death" "no_death" "no_death" "no_death" "no_death" "has_death"
## [889] "has_death" "no_death" "no_death" "has_death" "has_death" "no_death"
## [895] "has_death" "no_death" "no_death" "no_death" "has_death" "has_death"
## [901] "no_death" "no_death" "no_death" "no_death" "no_death" "no_death"
## [907] "no_death" "has_death" "has_death" "has_death" "no_death" "no_death"
## [913] "has_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [919] "has_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [925] "has_death" "no_death" "has_death" "no_death" "has_death" "has_death"
## [931] "no_death" "no_death" "has_death" "no_death" "has_death" "no_death"
## [937] "has_death" "no_death" "no_death" "no_death" "has_death" "has_death"
## [943] "has_death" "no_death" "no_death" "has_death" "has_death" "no_death"
## [949] "has_death" "no_death" "has_death" "no_death" "has_death" "has_death"
## [955] "no_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [961] "no_death" "has_death" "has_death" "has_death" "no_death" "no_death"
## [967] "has_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [973] "has_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [979] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [985] "no_death" "no_death" "has_death" "no_death" "has_death" "no_death"
## [991] "has_death" "no_death" "no_death" "has_death" "has_death" "has_death"
## [997] "has_death" "no_death" "no_death" "has_death" "has_death" "no_death"
## [1003] "has_death" "no_death" "has_death" "no_death" "has_death" "has_death"
## [1009] "no_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [1015] "no_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1021] "has_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [1027] "has_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [1033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1039] "no_death" "no_death" "has_death" "no_death" "has_death" "no_death"
## [1045] "has_death" "no_death" "no_death" "has_death" "has_death" "has_death"
## [1051] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1057] "has_death" "no_death" "has_death" "no_death" "has_death" "has_death"
## [1063] "no_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [1069] "no_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1075] "has_death" "has_death" "has_death" "no_death" "no_death" "has_death"
## [1081] "has_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [1087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1093] "no_death" "no_death" "has_death" "no_death" "has_death" "no_death"
## [1099] "has_death" "no_death" "no_death" "has_death" "has_death" "has_death"
## [1105] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1111] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1117] "no_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [1123] "no_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1129] "has_death" "has_death" "has_death" "no_death" "no_death" "has_death"
## [1135] "has_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [1141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1147] "no_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [1153] "has_death" "no_death" "no_death" "has_death" "has_death" "has_death"
## [1159] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1165] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1171] "no_death" "has_death" "no_death" "no_death" "no_death" "has_death"
## [1177] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1183] "has_death" "has_death" "has_death" "no_death" "no_death" "has_death"
## [1189] "has_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1201] "no_death" "no_death" "has_death" "has_death" "has_death" "no_death"
## [1207] "has_death" "no_death" "no_death" "has_death" "has_death" "has_death"
## [1213] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1219] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1225] "no_death" "has_death" "no_death" "has_death" "no_death" "has_death"
## [1231] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1237] "has_death" "has_death" "has_death" "no_death" "no_death" "has_death"
## [1243] "has_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1255] "no_death" "no_death" "has_death" "has_death" "has_death" "has_death"
## [1261] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1267] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1273] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1279] "no_death" "has_death" "no_death" "has_death" "no_death" "has_death"
## [1285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1291] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1297] "has_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1309] "no_death" "no_death" "has_death" "has_death" "has_death" "has_death"
## [1315] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1321] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1327] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1333] "no_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1345] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1375] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1381] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1387] "no_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1399] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1423] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1435] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1441] "has_death" "no_death" "has_death" "no_death" "has_death" "has_death"
## [1447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1453] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1477] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1489] "has_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1495] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1507] "has_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1531] "has_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1549] "no_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1591] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1603] "has_death" "no_death" "has_death" "has_death" "has_death" "has_death"
## [1609] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1657] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1663] "has_death" "no_death" "has_death" "has_death" "has_death" "has_death"
## [1669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1711] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1717] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [1723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1765] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1771] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [1777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1819] "has_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1825] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [1831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1879] "no_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [1885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1939] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [1993] "has_death" "no_death" "has_death" "has_death" "has_death" "has_death"
## [1999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2047] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [2053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2101] "has_death" "has_death" "has_death" "no_death" "has_death" "has_death"
## [2107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2155] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [2161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2209] "has_death" "has_death" "has_death" "has_death" "has_death" "no_death"
## [2215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2269] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [2995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [3997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [4999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [5995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [6997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [7999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [8995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [9997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [10999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [11995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [12997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [13999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [14995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [15997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [16999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [17995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [18997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [19999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [20995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [21997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [22999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [23995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [24997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [25999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [26995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [27997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [28999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [29995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [30997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31255] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [31261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31309] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [31315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31369] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31423] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [31429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31477] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [31483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31537] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31591] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [31597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31645] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [31651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31705] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31759] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [31765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31813] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [31819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31873] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31927] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [31933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31981] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [31987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [31999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32041] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32095] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [32101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32149] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [32155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32209] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32263] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [32269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32317] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [32323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32377] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32431] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [32437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32485] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [32491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32545] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32599] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [32605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32653] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [32659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32713] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32767] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [32773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32821] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [32827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32881] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32935] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [32941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [32989] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [32995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33049] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33103] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [33109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33157] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [33163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33217] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33271] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [33277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33325] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [33331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33385] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33439] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [33445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33493] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [33499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33553] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33607] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [33613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33661] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [33667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33721] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33775] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [33781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33829] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [33835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33889] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33943] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [33949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [33997] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [34003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34057] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34111] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [34117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34165] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [34171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34225] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34279] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [34285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34333] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [34339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34393] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34447] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [34453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34501] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [34507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34561] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34615] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [34621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34669] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [34675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34729] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34783] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [34789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34837] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [34843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34897] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34951] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [34957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [34999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35005] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [35011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35065] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35119] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [35125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35173] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [35179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35233] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35287] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [35293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35341] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [35347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35401] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35455] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [35461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35509] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [35515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35569] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35623] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [35629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35677] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [35683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35737] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35791] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [35797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35845] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [35851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35905] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35959] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [35965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [35995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36013] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [36019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36073] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36127] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [36133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36181] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [36187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36241] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36295] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [36301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36349] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [36355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36409] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36463] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [36469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36517] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [36523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36577] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36631] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [36637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36685] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [36691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36745] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36799] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [36805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36853] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [36859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36913] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36967] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [36973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [36997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37021] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [37027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37081] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37135] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [37141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37189] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [37195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37249] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37303] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [37309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37357] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [37363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37417] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37471] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [37477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37525] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [37531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37585] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37639] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [37645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37693] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [37699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37753] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37807] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [37813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37861] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [37867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37921] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37975] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [37981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [37999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38029] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [38035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38089] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38143] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [38149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38197] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [38203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38257] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38311] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [38317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38365] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [38371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38425] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38479] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [38485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38533] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [38539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38593] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38647] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [38653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38701] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [38707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38761] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38815] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [38821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38869] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [38875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38929] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38983] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [38989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [38995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39037] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [39043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39097] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39151] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [39157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39205] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [39211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39265] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39319] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [39325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39373] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [39379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39433] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39487] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [39493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39541] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [39547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39601] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39655] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [39661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39709] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [39715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39769] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39823] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [39829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39877] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [39883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39937] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [39991] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [39997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40045] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [40051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40105] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40159] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [40165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40213] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [40219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40273] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40327] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [40333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40381] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [40387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40441] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40495] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [40501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40549] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [40555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40609] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40663] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [40669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40717] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [40723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40777] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40831] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [40837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40885] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [40891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40945] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [40999] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [41005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41053] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [41059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41113] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41167] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [41173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41221] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [41227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41281] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41335] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [41341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41389] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [41395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41449] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41503] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [41509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41557] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [41563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41617] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41671] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [41677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41725] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [41731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41785] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41839] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [41845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41893] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [41899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41953] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [41995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42007] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [42013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42061] "has_death" "has_death" "has_death" "has_death" "no_death" "has_death"
## [42067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42121] "no_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42175] "has_death" "has_death" "no_death" "has_death" "has_death" "has_death"
## [42181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [42997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [43999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [44995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [45997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [46999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [47995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [48997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [49999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [50995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [51997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [52999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [53995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [54997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [55999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [56995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [57997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58939] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58945] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58951] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58957] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58963] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58969] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58975] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58981] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58987] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58993] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [58999] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59005] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59011] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59017] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59023] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59029] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59035] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59041] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59047] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59053] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59059] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59065] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59071] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59077] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59083] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59089] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59095] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59101] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59107] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59113] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59119] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59125] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59131] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59137] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59143] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59149] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59155] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59161] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59167] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59173] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59179] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59185] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59191] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59197] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59203] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59209] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59215] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59221] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59227] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59233] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59239] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59245] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59251] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59257] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59263] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59269] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59275] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59281] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59287] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59293] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59299] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59305] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59311] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59317] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59323] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59329] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59335] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59341] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59347] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59353] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59359] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59365] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59371] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59377] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59383] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59389] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59395] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59401] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59407] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59413] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59419] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59425] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59431] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59437] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59443] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59449] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59455] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59461] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59467] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59473] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59479] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59485] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59491] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59497] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59503] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59509] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59515] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59521] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59527] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59533] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59539] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59545] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59551] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59557] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59563] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59569] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59575] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59581] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59587] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59593] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59599] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59605] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59611] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59617] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59623] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59629] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59635] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59641] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59647] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59653] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59659] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59665] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59671] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59677] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59683] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59689] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59695] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59701] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59707] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59713] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59719] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59725] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59731] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59737] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59743] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59749] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59755] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59761] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59767] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59773] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59779] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59785] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59791] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59797] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59803] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59809] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59815] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59821] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59827] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59833] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59839] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59845] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59851] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59857] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59863] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59869] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59875] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59881] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59887] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59893] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59899] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59905] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59911] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59917] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59923] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59929] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59935] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59941] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59947] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59953] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59959] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59965] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59971] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59977] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59983] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59989] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [59995] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60001] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60007] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60013] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60019] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60025] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60031] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60037] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60043] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60049] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60055] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60061] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60067] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60073] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60079] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60085] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60091] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60097] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60103] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60109] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60115] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60121] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60127] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60133] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60139] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60145] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60151] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60157] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60163] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60169] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60175] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60181] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60187] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60193] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60199] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60205] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60211] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60217] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60223] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60229] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60235] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60241] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60247] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60253] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60259] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60265] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60271] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60277] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60283] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60289] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60295] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60301] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60307] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60313] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60319] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60325] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60331] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60337] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60343] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60349] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60355] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60361] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60367] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60373] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60379] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60385] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60391] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60397] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60403] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60409] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60415] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60421] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60427] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60433] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60439] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60445] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60451] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60457] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60463] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60469] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60475] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60481] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60487] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60493] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60499] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60505] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60511] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60517] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60523] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60529] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60535] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60541] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60547] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60553] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60559] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60565] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60571] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60577] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60583] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60589] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60595] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60601] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60607] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60613] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60619] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60625] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60631] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60637] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60643] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60649] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60655] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60661] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60667] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60673] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60679] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60685] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60691] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60697] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60703] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60709] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60715] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60721] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60727] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60733] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60739] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60745] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60751] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60757] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60763] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60769] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60775] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60781] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60787] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60793] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60799] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60805] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60811] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60817] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60823] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60829] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60835] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60841] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60847] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60853] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60859] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60865] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60871] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60877] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60883] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60889] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60895] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60901] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60907] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60913] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60919] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60925] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60931] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60937] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60943] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60949] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60955] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60961] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60967] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60973] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60979] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60985] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60991] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [60997] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61003] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61009] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61015] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61021] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61027] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61033] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61039] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61045] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61051] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61057] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61063] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61069] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61075] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61081] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61087] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61093] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61099] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61105] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61111] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61117] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61123] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61129] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61135] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61141] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61147] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61153] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61159] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61165] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61171] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61177] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61183] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61189] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61195] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61201] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61207] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61213] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61219] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61225] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61231] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61237] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61243] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61249] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61255] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61261] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61267] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61273] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61279] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61285] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61291] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61297] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61303] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61309] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61315] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61321] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61327] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61333] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61339] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61345] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61351] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61357] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61363] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61369] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61375] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61381] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61387] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61393] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61399] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61405] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61411] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61417] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61423] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61429] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61435] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61441] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61447] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61453] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61459] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61465] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61471] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61477] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61483] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61489] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61495] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61501] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61507] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61513] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61519] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61525] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61531] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61537] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61543] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61549] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61555] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61561] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61567] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61573] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61579] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61585] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61591] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61597] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61603] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61609] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61615] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61621] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61627] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61633] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61639] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61645] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61651] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61657] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61663] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61669] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61675] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61681] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61687] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61693] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61699] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61705] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61711] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61717] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61723] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61729] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61735] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61741] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61747] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61753] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61759] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61765] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61771] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61777] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61783] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61789] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61795] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61801] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61807] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61813] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61819] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61825] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61831] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61837] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61843] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61849] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61855] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61861] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61867] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61873] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61879] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61885] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61891] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61897] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61903] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61909] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61915] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61921] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61927] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61933] "has_death" "has_death" "has_death" "has_death" "has_death" "has_death"
## [61939] "has_death" "has_death" "has_death" "has_death"
Find the frequency and relative frequency of no_death
and has_death.
frequency <- table(df$death2)
relative_frequency <- prop.table(frequency)
#the frequency of has_death is 60790 and no_death is 1152
table(df$death2)
##
## has_death no_death
## 60790 1152
#the relative frequency of has_death is 0.898140196 and no_death is 0.01859804
prop.table(frequency)
##
## has_death no_death
## 0.98140196 0.01859804
death. (Hint: Use the
summary function)summary(df$Deaths)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 0 1171 5035 11779 14912 104277
death3 variable taking
the values as followslow_death if the number of deaths smaller than the
25 percentile (Q1)
mid_death if the number of deaths from Q1 to
Q3
high_death if the number of deaths greater than
Q3
#Obtain quartile data from prior summary function.
quartiles <- summary(df$Deaths)
Q1 <- quartiles["1st Qu."]
Q3 <- quartiles ["3rd Qu."]
#Create death3
df$death3 <- case_when(df$Deaths<Q1 ~ 'low_death',
df$Deaths<Q3 ~ 'mid_death',
TRUE~'high_death')
table(df$death3)
##
## high_death low_death mid_death
## 15489 15482 30971
df1 <- df[df$Date>='2021-01-01',]
by(df1$Cases, df1$State == 'Rhode Island', mean)
## df1$State == "Rhode Island": FALSE
## [1] 1197263
## ------------------------------------------------------------
## df1$State == "Rhode Island": TRUE
## [1] 291731.6
df$weekdays <- weekdays(df$Date)
df1 = df[df$State=='Rhode Island',]
by(df1$Cases,df1$weekdays, median)
## df1$weekdays: Friday
## [1] 165849
## ------------------------------------------------------------
## df1$weekdays: Monday
## [1] 165276.5
## ------------------------------------------------------------
## df1$weekdays: Saturday
## [1] 165849
## ------------------------------------------------------------
## df1$weekdays: Sunday
## [1] 164795.5
## ------------------------------------------------------------
## df1$weekdays: Thursday
## [1] 166714.5
## ------------------------------------------------------------
## df1$weekdays: Tuesday
## [1] 165946.5
## ------------------------------------------------------------
## df1$weekdays: Wednesday
## [1] 166368
df$Date <- as.Date(df$Date)
df$YearMonth <- format(df$Date, "%Y-%m")
df1 <- df[df$State == 'Rhode Island' & df$YearMonth %in% c('2021-06', '2021-07', '2021-08', '2021-09'), ]
by(df1$Cases, df1$YearMonth, median)
## df1$YearMonth: 2021-06
## [1] 152319.5
## ------------------------------------------------------------
## df1$YearMonth: 2021-07
## [1] 152971
## ------------------------------------------------------------
## df1$YearMonth: 2021-08
## [1] 158283
## ------------------------------------------------------------
## df1$YearMonth: 2021-09
## [1] 167814
setwd("C:\\Users\\student\\OneDrive - Bryant University\\2023-2024\\Semester 1\\MATH421-A Statistical Analysis with R")
df <- read.csv('titanic.csv')
head(df)
## PassengerId Survived Pclass
## 1 1 0 3
## 2 2 1 1
## 3 3 1 3
## 4 4 1 1
## 5 5 0 3
## 6 6 0 3
## Name Sex Age SibSp Parch
## 1 Braund, Mr. Owen Harris male 22 1 0
## 2 Cumings, Mrs. John Bradley (Florence Briggs Thayer) female 38 1 0
## 3 Heikkinen, Miss. Laina female 26 0 0
## 4 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35 1 0
## 5 Allen, Mr. William Henry male 35 0 0
## 6 Moran, Mr. James male NA 0 0
## Ticket Fare Cabin Embarked
## 1 A/5 21171 7.2500 S
## 2 PC 17599 71.2833 C85 C
## 3 STON/O2. 3101282 7.9250 S
## 4 113803 53.1000 C123 S
## 5 373450 8.0500 S
## 6 330877 8.4583 Q
str(df)
## 'data.frame': 891 obs. of 12 variables:
## $ PassengerId: int 1 2 3 4 5 6 7 8 9 10 ...
## $ Survived : int 0 1 1 1 0 0 0 0 1 1 ...
## $ Pclass : int 3 1 3 1 3 3 1 3 3 2 ...
## $ Name : chr "Braund, Mr. Owen Harris" "Cumings, Mrs. John Bradley (Florence Briggs Thayer)" "Heikkinen, Miss. Laina" "Futrelle, Mrs. Jacques Heath (Lily May Peel)" ...
## $ Sex : chr "male" "female" "female" "female" ...
## $ Age : num 22 38 26 35 35 NA 54 2 27 14 ...
## $ SibSp : int 1 1 0 1 0 0 0 3 0 1 ...
## $ Parch : int 0 0 0 0 0 0 0 1 2 0 ...
## $ Ticket : chr "A/5 21171" "PC 17599" "STON/O2. 3101282" "113803" ...
## $ Fare : num 7.25 71.28 7.92 53.1 8.05 ...
## $ Cabin : chr "" "C85" "" "C123" ...
## $ Embarked : chr "S" "C" "S" "S" ...
names(df)
## [1] "PassengerId" "Survived" "Pclass" "Name" "Sex"
## [6] "Age" "SibSp" "Parch" "Ticket" "Fare"
## [11] "Cabin" "Embarked"
mean(df$Fare, na.rm = TRUE)
## [1] 32.20421
min(df$Fare, na.rm = TRUE)
## [1] 0
max(df$Fare, na.rm = TRUE)
## [1] 512.3292
table(df$Pclass)
##
## 1 2 3
## 216 184 491
sum(is.na(df))
## [1] 177
colSums(is.na(df))
## PassengerId Survived Pclass Name Sex Age
## 0 0 0 0 0 177
## SibSp Parch Ticket Fare Cabin Embarked
## 0 0 0 0 0 0
class(df$Survived)
## [1] "integer"
cor(df$Survived, df$Pclass)
## [1] -0.338481
by(df$Fare, df$Ticket, FUN = mean)
## df$Ticket: 110152
## [1] 86.5
## ------------------------------------------------------------
## df$Ticket: 110413
## [1] 79.65
## ------------------------------------------------------------
## df$Ticket: 110465
## [1] 52
## ------------------------------------------------------------
## df$Ticket: 110564
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 110813
## [1] 75.25
## ------------------------------------------------------------
## df$Ticket: 111240
## [1] 33.5
## ------------------------------------------------------------
## df$Ticket: 111320
## [1] 38.5
## ------------------------------------------------------------
## df$Ticket: 111361
## [1] 57.9792
## ------------------------------------------------------------
## df$Ticket: 111369
## [1] 30
## ------------------------------------------------------------
## df$Ticket: 111426
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 111427
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 111428
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 112050
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 112052
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 112053
## [1] 30
## ------------------------------------------------------------
## df$Ticket: 112058
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 112059
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 112277
## [1] 31
## ------------------------------------------------------------
## df$Ticket: 112379
## [1] 39.6
## ------------------------------------------------------------
## df$Ticket: 113028
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 113043
## [1] 28.5
## ------------------------------------------------------------
## df$Ticket: 113050
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 113051
## [1] 27.75
## ------------------------------------------------------------
## df$Ticket: 113055
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 113056
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 113059
## [1] 47.1
## ------------------------------------------------------------
## df$Ticket: 113501
## [1] 30
## ------------------------------------------------------------
## df$Ticket: 113503
## [1] 211.5
## ------------------------------------------------------------
## df$Ticket: 113505
## [1] 55
## ------------------------------------------------------------
## df$Ticket: 113509
## [1] 61.9792
## ------------------------------------------------------------
## df$Ticket: 113510
## [1] 35
## ------------------------------------------------------------
## df$Ticket: 113514
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 113572
## [1] 80
## ------------------------------------------------------------
## df$Ticket: 113760
## [1] 120
## ------------------------------------------------------------
## df$Ticket: 113767
## [1] 50
## ------------------------------------------------------------
## df$Ticket: 113773
## [1] 53.1
## ------------------------------------------------------------
## df$Ticket: 113776
## [1] 66.6
## ------------------------------------------------------------
## df$Ticket: 113781
## [1] 151.55
## ------------------------------------------------------------
## df$Ticket: 113783
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 113784
## [1] 35.5
## ------------------------------------------------------------
## df$Ticket: 113786
## [1] 30.5
## ------------------------------------------------------------
## df$Ticket: 113787
## [1] 30.5
## ------------------------------------------------------------
## df$Ticket: 113788
## [1] 35.5
## ------------------------------------------------------------
## df$Ticket: 113789
## [1] 52
## ------------------------------------------------------------
## df$Ticket: 113792
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 113794
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 113796
## [1] 42.4
## ------------------------------------------------------------
## df$Ticket: 113798
## [1] 31
## ------------------------------------------------------------
## df$Ticket: 113800
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 113803
## [1] 53.1
## ------------------------------------------------------------
## df$Ticket: 113804
## [1] 30.5
## ------------------------------------------------------------
## df$Ticket: 113806
## [1] 53.1
## ------------------------------------------------------------
## df$Ticket: 113807
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 11668
## [1] 21
## ------------------------------------------------------------
## df$Ticket: 11751
## [1] 52.5542
## ------------------------------------------------------------
## df$Ticket: 11752
## [1] 26.2833
## ------------------------------------------------------------
## df$Ticket: 11753
## [1] 52.5542
## ------------------------------------------------------------
## df$Ticket: 11755
## [1] 39.6
## ------------------------------------------------------------
## df$Ticket: 11765
## [1] 55.4417
## ------------------------------------------------------------
## df$Ticket: 11767
## [1] 83.1583
## ------------------------------------------------------------
## df$Ticket: 11769
## [1] 51.4792
## ------------------------------------------------------------
## df$Ticket: 11771
## [1] 29.7
## ------------------------------------------------------------
## df$Ticket: 11774
## [1] 29.7
## ------------------------------------------------------------
## df$Ticket: 11813
## [1] 76.2917
## ------------------------------------------------------------
## df$Ticket: 11967
## [1] 91.0792
## ------------------------------------------------------------
## df$Ticket: 12233
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 12460
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 12749
## [1] 93.5
## ------------------------------------------------------------
## df$Ticket: 13049
## [1] 40.125
## ------------------------------------------------------------
## df$Ticket: 13213
## [1] 35.5
## ------------------------------------------------------------
## df$Ticket: 13214
## [1] 30.5
## ------------------------------------------------------------
## df$Ticket: 13502
## [1] 77.9583
## ------------------------------------------------------------
## df$Ticket: 13507
## [1] 55.9
## ------------------------------------------------------------
## df$Ticket: 13509
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 13567
## [1] 79.2
## ------------------------------------------------------------
## df$Ticket: 13568
## [1] 49.5
## ------------------------------------------------------------
## df$Ticket: 14311
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 14312
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 14313
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 14973
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 1601
## [1] 56.4958
## ------------------------------------------------------------
## df$Ticket: 16966
## [1] 134.5
## ------------------------------------------------------------
## df$Ticket: 16988
## [1] 30
## ------------------------------------------------------------
## df$Ticket: 17421
## [1] 110.8833
## ------------------------------------------------------------
## df$Ticket: 17453
## [1] 89.1042
## ------------------------------------------------------------
## df$Ticket: 17463
## [1] 51.8625
## ------------------------------------------------------------
## df$Ticket: 17464
## [1] 51.8625
## ------------------------------------------------------------
## df$Ticket: 17465
## [1] 25.9292
## ------------------------------------------------------------
## df$Ticket: 17466
## [1] 25.9292
## ------------------------------------------------------------
## df$Ticket: 17474
## [1] 57
## ------------------------------------------------------------
## df$Ticket: 17764
## [1] 30.6958
## ------------------------------------------------------------
## df$Ticket: 19877
## [1] 78.85
## ------------------------------------------------------------
## df$Ticket: 19928
## [1] 90
## ------------------------------------------------------------
## df$Ticket: 19943
## [1] 90
## ------------------------------------------------------------
## df$Ticket: 19947
## [1] 35.5
## ------------------------------------------------------------
## df$Ticket: 19950
## [1] 263
## ------------------------------------------------------------
## df$Ticket: 19952
## [1] 26.55
## ------------------------------------------------------------
## df$Ticket: 19972
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 19988
## [1] 30.5
## ------------------------------------------------------------
## df$Ticket: 19996
## [1] 52
## ------------------------------------------------------------
## df$Ticket: 2003
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 211536
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 21440
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 218629
## [1] 13.5
## ------------------------------------------------------------
## df$Ticket: 219533
## [1] 12.35
## ------------------------------------------------------------
## df$Ticket: 220367
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 220845
## [1] 65
## ------------------------------------------------------------
## df$Ticket: 2223
## [1] 8.3
## ------------------------------------------------------------
## df$Ticket: 223596
## [1] 13.5
## ------------------------------------------------------------
## df$Ticket: 226593
## [1] 12.35
## ------------------------------------------------------------
## df$Ticket: 226875
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 228414
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 229236
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 230080
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 230136
## [1] 39
## ------------------------------------------------------------
## df$Ticket: 230433
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 230434
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 231919
## [1] 23
## ------------------------------------------------------------
## df$Ticket: 231945
## [1] 11.5
## ------------------------------------------------------------
## df$Ticket: 233639
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 233866
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 234360
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 234604
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 234686
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 234818
## [1] 12.35
## ------------------------------------------------------------
## df$Ticket: 236171
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 236852
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 236853
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 237442
## [1] 13.5
## ------------------------------------------------------------
## df$Ticket: 237565
## [1] 15
## ------------------------------------------------------------
## df$Ticket: 237668
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 237671
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 237736
## [1] 30.0708
## ------------------------------------------------------------
## df$Ticket: 237789
## [1] 30
## ------------------------------------------------------------
## df$Ticket: 237798
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 239853
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 239854
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 239855
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 239856
## [1] 0
## ------------------------------------------------------------
## df$Ticket: 239865
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 240929
## [1] 12.65
## ------------------------------------------------------------
## df$Ticket: 24160
## [1] 211.3375
## ------------------------------------------------------------
## df$Ticket: 243847
## [1] 27
## ------------------------------------------------------------
## df$Ticket: 243880
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 244252
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 244270
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 244278
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: 244310
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 244358
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 244361
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 244367
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 244373
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 248698
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 248706
## [1] 16
## ------------------------------------------------------------
## df$Ticket: 248723
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 248727
## [1] 33
## ------------------------------------------------------------
## df$Ticket: 248731
## [1] 13.5
## ------------------------------------------------------------
## df$Ticket: 248733
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 248738
## [1] 29
## ------------------------------------------------------------
## df$Ticket: 248740
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 248747
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 250643
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 250644
## [1] 19.5
## ------------------------------------------------------------
## df$Ticket: 250646
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 250647
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 250648
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 250649
## [1] 14.5
## ------------------------------------------------------------
## df$Ticket: 250651
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 250652
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 250653
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 250655
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 2620
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2623
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2624
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2625
## [1] 8.5167
## ------------------------------------------------------------
## df$Ticket: 2626
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2627
## [1] 14.4583
## ------------------------------------------------------------
## df$Ticket: 2628
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2629
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2631
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 26360
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 2641
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2647
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2648
## [1] 4.0125
## ------------------------------------------------------------
## df$Ticket: 2649
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2650
## [1] 15.2458
## ------------------------------------------------------------
## df$Ticket: 2651
## [1] 11.2417
## ------------------------------------------------------------
## df$Ticket: 2653
## [1] 15.7417
## ------------------------------------------------------------
## df$Ticket: 2659
## [1] 14.4542
## ------------------------------------------------------------
## df$Ticket: 2661
## [1] 15.2458
## ------------------------------------------------------------
## df$Ticket: 2662
## [1] 21.6792
## ------------------------------------------------------------
## df$Ticket: 2663
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2664
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2665
## [1] 14.4542
## ------------------------------------------------------------
## df$Ticket: 2666
## [1] 19.2583
## ------------------------------------------------------------
## df$Ticket: 2667
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2668
## [1] 22.3583
## ------------------------------------------------------------
## df$Ticket: 2669
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 26707
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 2671
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2672
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2674
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2677
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2678
## [1] 15.2458
## ------------------------------------------------------------
## df$Ticket: 2680
## [1] 14.4542
## ------------------------------------------------------------
## df$Ticket: 2683
## [1] 6.4375
## ------------------------------------------------------------
## df$Ticket: 2685
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2686
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2687
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2689
## [1] 14.4583
## ------------------------------------------------------------
## df$Ticket: 2690
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2691
## [1] 14.4542
## ------------------------------------------------------------
## df$Ticket: 2693
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2694
## [1] 7.225
## ------------------------------------------------------------
## df$Ticket: 2695
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2697
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 2699
## [1] 18.7875
## ------------------------------------------------------------
## df$Ticket: 2700
## [1] 7.2292
## ------------------------------------------------------------
## df$Ticket: 27042
## [1] 30
## ------------------------------------------------------------
## df$Ticket: 27267
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 27849
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 28134
## [1] 11.5
## ------------------------------------------------------------
## df$Ticket: 28206
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: 28213
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 28220
## [1] 32.5
## ------------------------------------------------------------
## df$Ticket: 28228
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 28403
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 28424
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 28425
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 28551
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 28664
## [1] 21
## ------------------------------------------------------------
## df$Ticket: 28665
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: 29011
## [1] 14
## ------------------------------------------------------------
## df$Ticket: 2908
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 29103
## [1] 23
## ------------------------------------------------------------
## df$Ticket: 29104
## [1] 11.5
## ------------------------------------------------------------
## df$Ticket: 29105
## [1] 23
## ------------------------------------------------------------
## df$Ticket: 29106
## [1] 18.75
## ------------------------------------------------------------
## df$Ticket: 29108
## [1] 11.5
## ------------------------------------------------------------
## df$Ticket: 2926
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 29750
## [1] 39
## ------------------------------------------------------------
## df$Ticket: 29751
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 3101264
## [1] 6.4958
## ------------------------------------------------------------
## df$Ticket: 3101265
## [1] 7.4958
## ------------------------------------------------------------
## df$Ticket: 3101267
## [1] 6.4958
## ------------------------------------------------------------
## df$Ticket: 3101276
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: 3101277
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: 3101278
## [1] 15.85
## ------------------------------------------------------------
## df$Ticket: 3101281
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: 3101295
## [1] 39.6875
## ------------------------------------------------------------
## df$Ticket: 3101296
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: 3101298
## [1] 12.2875
## ------------------------------------------------------------
## df$Ticket: 31027
## [1] 21
## ------------------------------------------------------------
## df$Ticket: 31028
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: 312991
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 312992
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 312993
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 31418
## [1] 13
## ------------------------------------------------------------
## df$Ticket: 315037
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315082
## [1] 7.875
## ------------------------------------------------------------
## df$Ticket: 315084
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315086
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315088
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315089
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315090
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315093
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315094
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315096
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315097
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315098
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315151
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 315153
## [1] 22.025
## ------------------------------------------------------------
## df$Ticket: 323592
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: 323951
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 324669
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 330877
## [1] 8.4583
## ------------------------------------------------------------
## df$Ticket: 330909
## [1] 7.6292
## ------------------------------------------------------------
## df$Ticket: 330919
## [1] 7.8292
## ------------------------------------------------------------
## df$Ticket: 330923
## [1] 8.0292
## ------------------------------------------------------------
## df$Ticket: 330931
## [1] 7.8792
## ------------------------------------------------------------
## df$Ticket: 330932
## [1] 7.7875
## ------------------------------------------------------------
## df$Ticket: 330935
## [1] 8.1375
## ------------------------------------------------------------
## df$Ticket: 330958
## [1] 7.8792
## ------------------------------------------------------------
## df$Ticket: 330959
## [1] 7.8792
## ------------------------------------------------------------
## df$Ticket: 330979
## [1] 7.8292
## ------------------------------------------------------------
## df$Ticket: 330980
## [1] 7.8792
## ------------------------------------------------------------
## df$Ticket: 334912
## [1] 7.7333
## ------------------------------------------------------------
## df$Ticket: 335097
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 335677
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 33638
## [1] 81.8583
## ------------------------------------------------------------
## df$Ticket: 336439
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 3411
## [1] 8.7125
## ------------------------------------------------------------
## df$Ticket: 341826
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 34218
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: 342826
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 343095
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 343120
## [1] 7.65
## ------------------------------------------------------------
## df$Ticket: 343275
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 343276
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 345364
## [1] 6.2375
## ------------------------------------------------------------
## df$Ticket: 345572
## [1] 17.4
## ------------------------------------------------------------
## df$Ticket: 345763
## [1] 18
## ------------------------------------------------------------
## df$Ticket: 345764
## [1] 18
## ------------------------------------------------------------
## df$Ticket: 345765
## [1] 9
## ------------------------------------------------------------
## df$Ticket: 345767
## [1] 9
## ------------------------------------------------------------
## df$Ticket: 345769
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 345770
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 345773
## [1] 24.15
## ------------------------------------------------------------
## df$Ticket: 345774
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 345777
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 345778
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 345779
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 345780
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 345781
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 345783
## [1] 9.5
## ------------------------------------------------------------
## df$Ticket: 3460
## [1] 7.0458
## ------------------------------------------------------------
## df$Ticket: 347054
## [1] 10.4625
## ------------------------------------------------------------
## df$Ticket: 347060
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347061
## [1] 6.975
## ------------------------------------------------------------
## df$Ticket: 347062
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347063
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347064
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 347067
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347068
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347069
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347071
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347073
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 347074
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347076
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347077
## [1] 31.3875
## ------------------------------------------------------------
## df$Ticket: 347078
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 347080
## [1] 14.4
## ------------------------------------------------------------
## df$Ticket: 347081
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 347082
## [1] 31.275
## ------------------------------------------------------------
## df$Ticket: 347083
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347085
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347087
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 347088
## [1] 27.9
## ------------------------------------------------------------
## df$Ticket: 347089
## [1] 6.975
## ------------------------------------------------------------
## df$Ticket: 3474
## [1] 7.8875
## ------------------------------------------------------------
## df$Ticket: 347464
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 347466
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 347468
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 347470
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 347742
## [1] 11.1333
## ------------------------------------------------------------
## df$Ticket: 347743
## [1] 7.0542
## ------------------------------------------------------------
## df$Ticket: 348121
## [1] 7.65
## ------------------------------------------------------------
## df$Ticket: 348123
## [1] 7.65
## ------------------------------------------------------------
## df$Ticket: 348124
## [1] 7.65
## ------------------------------------------------------------
## df$Ticket: 349201
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349203
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349204
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349205
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349206
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349207
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349208
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349209
## [1] 7.4958
## ------------------------------------------------------------
## df$Ticket: 349210
## [1] 7.4958
## ------------------------------------------------------------
## df$Ticket: 349212
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349213
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349214
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349215
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349216
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349217
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349218
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349219
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349221
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349222
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349223
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349224
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349225
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349227
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349228
## [1] 10.1708
## ------------------------------------------------------------
## df$Ticket: 349231
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349233
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349234
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349236
## [1] 8.85
## ------------------------------------------------------------
## df$Ticket: 349237
## [1] 17.8
## ------------------------------------------------------------
## df$Ticket: 349239
## [1] 8.6625
## ------------------------------------------------------------
## df$Ticket: 349240
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349241
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349242
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349243
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349244
## [1] 8.6833
## ------------------------------------------------------------
## df$Ticket: 349245
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349246
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349247
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349248
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349249
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349251
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349252
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349253
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349254
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349256
## [1] 13.4167
## ------------------------------------------------------------
## df$Ticket: 349257
## [1] 7.8958
## ------------------------------------------------------------
## df$Ticket: 349909
## [1] 21.075
## ------------------------------------------------------------
## df$Ticket: 349910
## [1] 15.55
## ------------------------------------------------------------
## df$Ticket: 349912
## [1] 7.775
## ------------------------------------------------------------
## df$Ticket: 350025
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 350026
## [1] 14.1083
## ------------------------------------------------------------
## df$Ticket: 350029
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 350034
## [1] 7.7958
## ------------------------------------------------------------
## df$Ticket: 350035
## [1] 7.7958
## ------------------------------------------------------------
## df$Ticket: 350036
## [1] 7.7958
## ------------------------------------------------------------
## df$Ticket: 350042
## [1] 7.7958
## ------------------------------------------------------------
## df$Ticket: 350043
## [1] 7.7958
## ------------------------------------------------------------
## df$Ticket: 350046
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 350047
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 350048
## [1] 7.0542
## ------------------------------------------------------------
## df$Ticket: 350050
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 350052
## [1] 7.7958
## ------------------------------------------------------------
## df$Ticket: 350060
## [1] 7.5208
## ------------------------------------------------------------
## df$Ticket: 350404
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 350406
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 350407
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 350417
## [1] 7.8542
## ------------------------------------------------------------
## df$Ticket: 35273
## [1] 113.275
## ------------------------------------------------------------
## df$Ticket: 35281
## [1] 77.2875
## ------------------------------------------------------------
## df$Ticket: 35851
## [1] 7.7333
## ------------------------------------------------------------
## df$Ticket: 35852
## [1] 7.7333
## ------------------------------------------------------------
## df$Ticket: 358585
## [1] 14.5
## ------------------------------------------------------------
## df$Ticket: 36209
## [1] 7.725
## ------------------------------------------------------------
## df$Ticket: 362316
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: 363291
## [1] 20.525
## ------------------------------------------------------------
## df$Ticket: 363294
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 363592
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 364498
## [1] 14.5
## ------------------------------------------------------------
## df$Ticket: 364499
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 364500
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: 364506
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 364511
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 364512
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 364516
## [1] 12.475
## ------------------------------------------------------------
## df$Ticket: 364846
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 364848
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 364849
## [1] 15.5
## ------------------------------------------------------------
## df$Ticket: 364850
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 364851
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 365222
## [1] 6.75
## ------------------------------------------------------------
## df$Ticket: 365226
## [1] 6.75
## ------------------------------------------------------------
## df$Ticket: 36568
## [1] 15.5
## ------------------------------------------------------------
## df$Ticket: 367226
## [1] 23.25
## ------------------------------------------------------------
## df$Ticket: 367228
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 367229
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 367230
## [1] 15.5
## ------------------------------------------------------------
## df$Ticket: 367231
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 367232
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 367655
## [1] 7.7292
## ------------------------------------------------------------
## df$Ticket: 368323
## [1] 6.95
## ------------------------------------------------------------
## df$Ticket: 36864
## [1] 7.7417
## ------------------------------------------------------------
## df$Ticket: 36865
## [1] 7.7375
## ------------------------------------------------------------
## df$Ticket: 36866
## [1] 7.7375
## ------------------------------------------------------------
## df$Ticket: 368703
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 36928
## [1] 164.8667
## ------------------------------------------------------------
## df$Ticket: 36947
## [1] 78.2667
## ------------------------------------------------------------
## df$Ticket: 36963
## [1] 32.3208
## ------------------------------------------------------------
## df$Ticket: 36967
## [1] 34.0208
## ------------------------------------------------------------
## df$Ticket: 36973
## [1] 83.475
## ------------------------------------------------------------
## df$Ticket: 370129
## [1] 20.2125
## ------------------------------------------------------------
## df$Ticket: 370365
## [1] 15.5
## ------------------------------------------------------------
## df$Ticket: 370369
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 370370
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 370371
## [1] 15.5
## ------------------------------------------------------------
## df$Ticket: 370372
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 370373
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 370375
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 370376
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 370377
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 371060
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 371110
## [1] 24.15
## ------------------------------------------------------------
## df$Ticket: 371362
## [1] 16.1
## ------------------------------------------------------------
## df$Ticket: 372622
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 373450
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 374746
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 374887
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: 374910
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 376564
## [1] 16.1
## ------------------------------------------------------------
## df$Ticket: 376566
## [1] 16.1
## ------------------------------------------------------------
## df$Ticket: 382649
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 382651
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 382652
## [1] 29.125
## ------------------------------------------------------------
## df$Ticket: 383121
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 384461
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: 386525
## [1] 16.1
## ------------------------------------------------------------
## df$Ticket: 392091
## [1] 9.35
## ------------------------------------------------------------
## df$Ticket: 392092
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 392096
## [1] 12.475
## ------------------------------------------------------------
## df$Ticket: 394140
## [1] 6.8583
## ------------------------------------------------------------
## df$Ticket: 4133
## [1] 25.4667
## ------------------------------------------------------------
## df$Ticket: 4134
## [1] 9.5875
## ------------------------------------------------------------
## df$Ticket: 4135
## [1] 9.5875
## ------------------------------------------------------------
## df$Ticket: 4136
## [1] 9.825
## ------------------------------------------------------------
## df$Ticket: 4137
## [1] 9.825
## ------------------------------------------------------------
## df$Ticket: 4138
## [1] 9.8417
## ------------------------------------------------------------
## df$Ticket: 4579
## [1] 8.4042
## ------------------------------------------------------------
## df$Ticket: 54636
## [1] 16.1
## ------------------------------------------------------------
## df$Ticket: 5727
## [1] 25.5875
## ------------------------------------------------------------
## df$Ticket: 65303
## [1] 19.9667
## ------------------------------------------------------------
## df$Ticket: 65304
## [1] 19.9667
## ------------------------------------------------------------
## df$Ticket: 65306
## [1] 8.1125
## ------------------------------------------------------------
## df$Ticket: 6563
## [1] 9.225
## ------------------------------------------------------------
## df$Ticket: 693
## [1] 26
## ------------------------------------------------------------
## df$Ticket: 695
## [1] 5
## ------------------------------------------------------------
## df$Ticket: 7267
## [1] 9.225
## ------------------------------------------------------------
## df$Ticket: 7534
## [1] 9.53125
## ------------------------------------------------------------
## df$Ticket: 7540
## [1] 8.6542
## ------------------------------------------------------------
## df$Ticket: 7545
## [1] 9.4833
## ------------------------------------------------------------
## df$Ticket: 7546
## [1] 9.475
## ------------------------------------------------------------
## df$Ticket: 7552
## [1] 10.5167
## ------------------------------------------------------------
## df$Ticket: 7553
## [1] 9.8375
## ------------------------------------------------------------
## df$Ticket: 7598
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: 8471
## [1] 8.3625
## ------------------------------------------------------------
## df$Ticket: 8475
## [1] 8.4333
## ------------------------------------------------------------
## df$Ticket: 9234
## [1] 7.75
## ------------------------------------------------------------
## df$Ticket: A./5. 2152
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A./5. 3235
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A.5. 11206
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A.5. 18509
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/4 45380
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/4 48871
## [1] 24.15
## ------------------------------------------------------------
## df$Ticket: A/4. 20589
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/4. 34244
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: A/4. 39886
## [1] 7.8
## ------------------------------------------------------------
## df$Ticket: A/5 21171
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: A/5 21172
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: A/5 21173
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: A/5 21174
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: A/5 2466
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/5 2817
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/5 3536
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/5 3540
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/5 3594
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/5 3902
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: A/5. 10482
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/5. 13032
## [1] 7.7333
## ------------------------------------------------------------
## df$Ticket: A/5. 2151
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A/5. 3336
## [1] 16.1
## ------------------------------------------------------------
## df$Ticket: A/5. 3337
## [1] 14.5
## ------------------------------------------------------------
## df$Ticket: A/5. 851
## [1] 14.5
## ------------------------------------------------------------
## df$Ticket: A/S 2816
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: A4. 54510
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: C 17369
## [1] 7.1417
## ------------------------------------------------------------
## df$Ticket: C 4001
## [1] 22.525
## ------------------------------------------------------------
## df$Ticket: C 7075
## [1] 6.45
## ------------------------------------------------------------
## df$Ticket: C 7076
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: C 7077
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: C.A. 17248
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 18723
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 2315
## [1] 20.575
## ------------------------------------------------------------
## df$Ticket: C.A. 24579
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 24580
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 2673
## [1] 20.25
## ------------------------------------------------------------
## df$Ticket: C.A. 29178
## [1] 13
## ------------------------------------------------------------
## df$Ticket: C.A. 29395
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 29566
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 31026
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 31921
## [1] 26.25
## ------------------------------------------------------------
## df$Ticket: C.A. 33111
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 33112
## [1] 36.75
## ------------------------------------------------------------
## df$Ticket: C.A. 33595
## [1] 15.75
## ------------------------------------------------------------
## df$Ticket: C.A. 34260
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: C.A. 34651
## [1] 27.75
## ------------------------------------------------------------
## df$Ticket: C.A. 37671
## [1] 15.9
## ------------------------------------------------------------
## df$Ticket: C.A. 5547
## [1] 7.55
## ------------------------------------------------------------
## df$Ticket: C.A. 6212
## [1] 15.1
## ------------------------------------------------------------
## df$Ticket: C.A./SOTON 34068
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: CA 2144
## [1] 46.9
## ------------------------------------------------------------
## df$Ticket: CA. 2314
## [1] 7.55
## ------------------------------------------------------------
## df$Ticket: CA. 2343
## [1] 69.55
## ------------------------------------------------------------
## df$Ticket: F.C. 12750
## [1] 52
## ------------------------------------------------------------
## df$Ticket: F.C.C. 13528
## [1] 21
## ------------------------------------------------------------
## df$Ticket: F.C.C. 13529
## [1] 26.25
## ------------------------------------------------------------
## df$Ticket: F.C.C. 13531
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: Fa 265302
## [1] 7.3125
## ------------------------------------------------------------
## df$Ticket: LINE
## [1] 0
## ------------------------------------------------------------
## df$Ticket: P/PP 3381
## [1] 24
## ------------------------------------------------------------
## df$Ticket: PC 17318
## [1] 25.925
## ------------------------------------------------------------
## df$Ticket: PC 17473
## [1] 26.2875
## ------------------------------------------------------------
## df$Ticket: PC 17474
## [1] 26.3875
## ------------------------------------------------------------
## df$Ticket: PC 17475
## [1] 26.2875
## ------------------------------------------------------------
## df$Ticket: PC 17476
## [1] 26.2875
## ------------------------------------------------------------
## df$Ticket: PC 17477
## [1] 69.3
## ------------------------------------------------------------
## df$Ticket: PC 17482
## [1] 49.5042
## ------------------------------------------------------------
## df$Ticket: PC 17483
## [1] 221.7792
## ------------------------------------------------------------
## df$Ticket: PC 17485
## [1] 56.9292
## ------------------------------------------------------------
## df$Ticket: PC 17558
## [1] 247.5208
## ------------------------------------------------------------
## df$Ticket: PC 17569
## [1] 146.5208
## ------------------------------------------------------------
## df$Ticket: PC 17572
## [1] 76.7292
## ------------------------------------------------------------
## df$Ticket: PC 17582
## [1] 153.4625
## ------------------------------------------------------------
## df$Ticket: PC 17585
## [1] 79.2
## ------------------------------------------------------------
## df$Ticket: PC 17590
## [1] 50.4958
## ------------------------------------------------------------
## df$Ticket: PC 17592
## [1] 39.4
## ------------------------------------------------------------
## df$Ticket: PC 17593
## [1] 79.2
## ------------------------------------------------------------
## df$Ticket: PC 17595
## [1] 28.7125
## ------------------------------------------------------------
## df$Ticket: PC 17596
## [1] 29.7
## ------------------------------------------------------------
## df$Ticket: PC 17597
## [1] 61.3792
## ------------------------------------------------------------
## df$Ticket: PC 17599
## [1] 71.2833
## ------------------------------------------------------------
## df$Ticket: PC 17600
## [1] 30.6958
## ------------------------------------------------------------
## df$Ticket: PC 17601
## [1] 27.7208
## ------------------------------------------------------------
## df$Ticket: PC 17603
## [1] 59.4
## ------------------------------------------------------------
## df$Ticket: PC 17604
## [1] 82.1708
## ------------------------------------------------------------
## df$Ticket: PC 17605
## [1] 27.7208
## ------------------------------------------------------------
## df$Ticket: PC 17608
## [1] 262.375
## ------------------------------------------------------------
## df$Ticket: PC 17609
## [1] 49.5042
## ------------------------------------------------------------
## df$Ticket: PC 17610
## [1] 27.7208
## ------------------------------------------------------------
## df$Ticket: PC 17611
## [1] 133.65
## ------------------------------------------------------------
## df$Ticket: PC 17612
## [1] 27.7208
## ------------------------------------------------------------
## df$Ticket: PC 17754
## [1] 34.6542
## ------------------------------------------------------------
## df$Ticket: PC 17755
## [1] 512.3292
## ------------------------------------------------------------
## df$Ticket: PC 17756
## [1] 83.1583
## ------------------------------------------------------------
## df$Ticket: PC 17757
## [1] 227.525
## ------------------------------------------------------------
## df$Ticket: PC 17758
## [1] 108.9
## ------------------------------------------------------------
## df$Ticket: PC 17759
## [1] 63.3583
## ------------------------------------------------------------
## df$Ticket: PC 17760
## [1] 135.6333
## ------------------------------------------------------------
## df$Ticket: PC 17761
## [1] 106.425
## ------------------------------------------------------------
## df$Ticket: PP 4348
## [1] 9.35
## ------------------------------------------------------------
## df$Ticket: PP 9549
## [1] 16.7
## ------------------------------------------------------------
## df$Ticket: S.C./A.4. 23567
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: S.C./PARIS 2079
## [1] 37.0042
## ------------------------------------------------------------
## df$Ticket: S.O./P.P. 3
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: S.O./P.P. 751
## [1] 7.55
## ------------------------------------------------------------
## df$Ticket: S.O.C. 14879
## [1] 73.5
## ------------------------------------------------------------
## df$Ticket: S.O.P. 1166
## [1] 12.525
## ------------------------------------------------------------
## df$Ticket: S.P. 3464
## [1] 8.1583
## ------------------------------------------------------------
## df$Ticket: S.W./PP 752
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: SC 1748
## [1] 12
## ------------------------------------------------------------
## df$Ticket: SC/AH 29037
## [1] 26
## ------------------------------------------------------------
## df$Ticket: SC/AH 3085
## [1] 26
## ------------------------------------------------------------
## df$Ticket: SC/AH Basle 541
## [1] 13.7917
## ------------------------------------------------------------
## df$Ticket: SC/Paris 2123
## [1] 41.5792
## ------------------------------------------------------------
## df$Ticket: SC/PARIS 2131
## [1] 15.05
## ------------------------------------------------------------
## df$Ticket: SC/PARIS 2133
## [1] 15.0458
## ------------------------------------------------------------
## df$Ticket: SC/PARIS 2146
## [1] 13.8625
## ------------------------------------------------------------
## df$Ticket: SC/PARIS 2149
## [1] 13.8583
## ------------------------------------------------------------
## df$Ticket: SC/Paris 2163
## [1] 12.875
## ------------------------------------------------------------
## df$Ticket: SC/PARIS 2167
## [1] 27.7208
## ------------------------------------------------------------
## df$Ticket: SCO/W 1585
## [1] 12.275
## ------------------------------------------------------------
## df$Ticket: SO/C 14885
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: SOTON/O.Q. 3101305
## [1] 7.05
## ------------------------------------------------------------
## df$Ticket: SOTON/O.Q. 3101306
## [1] 7.05
## ------------------------------------------------------------
## df$Ticket: SOTON/O.Q. 3101307
## [1] 7.05
## ------------------------------------------------------------
## df$Ticket: SOTON/O.Q. 3101310
## [1] 7.05
## ------------------------------------------------------------
## df$Ticket: SOTON/O.Q. 3101311
## [1] 7.05
## ------------------------------------------------------------
## df$Ticket: SOTON/O.Q. 3101312
## [1] 7.05
## ------------------------------------------------------------
## df$Ticket: SOTON/O.Q. 392078
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: SOTON/O.Q. 392087
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: SOTON/O2 3101272
## [1] 7.125
## ------------------------------------------------------------
## df$Ticket: SOTON/O2 3101287
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: SOTON/OQ 3101316
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: SOTON/OQ 3101317
## [1] 7.25
## ------------------------------------------------------------
## df$Ticket: SOTON/OQ 392076
## [1] 7.05
## ------------------------------------------------------------
## df$Ticket: SOTON/OQ 392082
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: SOTON/OQ 392086
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: SOTON/OQ 392089
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: SOTON/OQ 392090
## [1] 8.05
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101269
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101273
## [1] 7.125
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101274
## [1] 7.125
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101275
## [1] 7.125
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101280
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101285
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101286
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101288
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101289
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101292
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101293
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O 2. 3101294
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O2. 3101271
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O2. 3101279
## [1] 15.85
## ------------------------------------------------------------
## df$Ticket: STON/O2. 3101282
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O2. 3101283
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: STON/O2. 3101290
## [1] 7.925
## ------------------------------------------------------------
## df$Ticket: SW/PP 751
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: W./C. 14258
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: W./C. 14263
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: W./C. 6607
## [1] 23.45
## ------------------------------------------------------------
## df$Ticket: W./C. 6608
## [1] 34.375
## ------------------------------------------------------------
## df$Ticket: W./C. 6609
## [1] 7.55
## ------------------------------------------------------------
## df$Ticket: W.E.P. 5734
## [1] 61.175
## ------------------------------------------------------------
## df$Ticket: W/C 14208
## [1] 10.5
## ------------------------------------------------------------
## df$Ticket: WE/P 5735
## [1] 71
df$Survived2 <- ifelse(df$Survived==0,
'no_survivors','has_survivors')
library(dplyr)
df$Survived2 <- case_when(df$Survived==0 ~ 'no_survivors',
df$Survived > 0 ~ 'has_survivors')
df$Survived2
## [1] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [5] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [9] "has_survivors" "has_survivors" "has_survivors" "has_survivors"
## [13] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [17] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [21] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [25] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [29] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [33] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [37] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [41] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [45] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [49] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [53] "has_survivors" "has_survivors" "no_survivors" "has_survivors"
## [57] "has_survivors" "no_survivors" "has_survivors" "no_survivors"
## [61] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [65] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [69] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [73] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [77] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [81] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [85] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [89] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [93] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [97] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [101] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [105] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [109] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [113] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [117] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [121] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [125] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [129] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [133] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [137] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [141] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [145] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [149] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [153] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [157] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [161] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [165] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [169] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [173] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [177] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [181] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [185] "has_survivors" "no_survivors" "has_survivors" "has_survivors"
## [189] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [193] "has_survivors" "has_survivors" "has_survivors" "has_survivors"
## [197] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [201] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [205] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [209] "has_survivors" "has_survivors" "no_survivors" "has_survivors"
## [213] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [217] "has_survivors" "no_survivors" "has_survivors" "no_survivors"
## [221] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [225] "has_survivors" "no_survivors" "has_survivors" "no_survivors"
## [229] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [233] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [237] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [241] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [245] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [249] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [253] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [257] "has_survivors" "has_survivors" "has_survivors" "has_survivors"
## [261] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [265] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [269] "has_survivors" "has_survivors" "no_survivors" "has_survivors"
## [273] "has_survivors" "no_survivors" "has_survivors" "has_survivors"
## [277] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [281] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [285] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [289] "has_survivors" "has_survivors" "has_survivors" "has_survivors"
## [293] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [297] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [301] "has_survivors" "has_survivors" "no_survivors" "has_survivors"
## [305] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [309] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [313] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [317] "has_survivors" "no_survivors" "has_survivors" "has_survivors"
## [321] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [325] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [329] "has_survivors" "has_survivors" "has_survivors" "no_survivors"
## [333] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [337] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [341] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [345] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [349] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [353] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [357] "has_survivors" "no_survivors" "has_survivors" "has_survivors"
## [361] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [365] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [369] "has_survivors" "has_survivors" "has_survivors" "no_survivors"
## [373] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [377] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [381] "has_survivors" "has_survivors" "no_survivors" "has_survivors"
## [385] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [389] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [393] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [397] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [401] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [405] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [409] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [413] "has_survivors" "no_survivors" "has_survivors" "no_survivors"
## [417] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [421] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [425] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [429] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [433] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [437] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [441] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [445] "has_survivors" "has_survivors" "has_survivors" "has_survivors"
## [449] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [453] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [457] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [461] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [465] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [469] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [473] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [477] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [481] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [485] "has_survivors" "no_survivors" "has_survivors" "no_survivors"
## [489] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [493] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [497] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [501] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [505] "has_survivors" "no_survivors" "has_survivors" "has_survivors"
## [509] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [513] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [517] "has_survivors" "no_survivors" "has_survivors" "no_survivors"
## [521] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [525] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [529] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [533] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [537] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [541] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [545] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [549] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [553] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [557] "has_survivors" "no_survivors" "has_survivors" "has_survivors"
## [561] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [565] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [569] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [573] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [577] "has_survivors" "has_survivors" "no_survivors" "has_survivors"
## [581] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [585] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [589] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [593] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [597] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [601] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [605] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [609] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [613] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [617] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [621] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [625] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [629] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [633] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [637] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [641] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [645] "has_survivors" "has_survivors" "no_survivors" "has_survivors"
## [649] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [653] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [657] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [661] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [665] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [669] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [673] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [677] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [681] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [685] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [689] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [693] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [697] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [701] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [705] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [709] "has_survivors" "has_survivors" "has_survivors" "no_survivors"
## [713] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [717] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [721] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [725] "has_survivors" "no_survivors" "has_survivors" "has_survivors"
## [729] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [733] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [737] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [741] "has_survivors" "no_survivors" "has_survivors" "no_survivors"
## [745] "has_survivors" "no_survivors" "no_survivors" "has_survivors"
## [749] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [753] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [757] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [761] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [765] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [769] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [773] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [777] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [781] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [785] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [789] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [793] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [797] "has_survivors" "has_survivors" "no_survivors" "no_survivors"
## [801] "no_survivors" "has_survivors" "has_survivors" "has_survivors"
## [805] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [809] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [813] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [817] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [821] "has_survivors" "has_survivors" "no_survivors" "has_survivors"
## [825] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [829] "has_survivors" "has_survivors" "has_survivors" "has_survivors"
## [833] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [837] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [841] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [845] "no_survivors" "no_survivors" "no_survivors" "no_survivors"
## [849] "no_survivors" "has_survivors" "no_survivors" "no_survivors"
## [853] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [857] "has_survivors" "has_survivors" "has_survivors" "no_survivors"
## [861] "no_survivors" "no_survivors" "has_survivors" "no_survivors"
## [865] "no_survivors" "has_survivors" "has_survivors" "no_survivors"
## [869] "no_survivors" "has_survivors" "no_survivors" "has_survivors"
## [873] "no_survivors" "no_survivors" "has_survivors" "has_survivors"
## [877] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [881] "has_survivors" "no_survivors" "no_survivors" "no_survivors"
## [885] "no_survivors" "no_survivors" "no_survivors" "has_survivors"
## [889] "no_survivors" "has_survivors" "no_survivors"
library(dplyr)
df$Age2 <- case_when(df$Age < 18 ~ 'child',
df$Age > 18 ~ 'adult')
df$Age2
## [1] "adult" "adult" "adult" "adult" "adult" NA "adult" "child" "adult"
## [10] "child" "child" "adult" "adult" "adult" "child" "adult" "child" NA
## [19] "adult" NA "adult" "adult" "child" "adult" "child" "adult" NA
## [28] "adult" NA NA "adult" NA NA "adult" "adult" "adult"
## [37] NA "adult" NA "child" "adult" "adult" NA "child" "adult"
## [46] NA NA NA NA NA "child" "adult" "adult" "adult"
## [55] "adult" NA "adult" "adult" "child" "child" "adult" "adult" "adult"
## [64] "child" NA NA "adult" "adult" "child" "adult" "adult" "child"
## [73] "adult" "adult" "adult" "adult" NA NA "child" "adult" "adult"
## [82] "adult" NA "adult" "child" "adult" "child" NA "adult" "adult"
## [91] "adult" "adult" "adult" "adult" "adult" NA "adult" "adult" "adult"
## [100] "adult" "adult" NA "adult" "adult" "adult" "adult" "adult" NA
## [109] "adult" NA "adult" "child" "adult" "adult" "child" "adult" "adult"
## [118] "adult" "adult" "child" "adult" NA "adult" "adult" "adult" "child"
## [127] NA "adult" NA "adult" "adult" "adult" "adult" "adult" "adult"
## [136] "adult" "adult" "adult" "child" "adult" NA "adult" "adult" "adult"
## [145] NA "adult" "adult" "child" "adult" "adult" "adult" "adult" "adult"
## [154] "adult" NA "adult" "child" "adult" NA NA "adult" "adult"
## [163] "adult" "child" "child" "child" NA "adult" NA "adult" "adult"
## [172] "child" "child" "adult" "adult" NA NA "adult" "adult" "adult"
## [181] NA NA "child" "child" "child" NA NA "adult" "adult"
## [190] "adult" "adult" "adult" "adult" "child" "adult" "adult" NA "adult"
## [199] NA "adult" "adult" NA "adult" "adult" NA "child" "adult"
## [208] "adult" "child" "adult" "adult" "adult" "adult" "adult" NA "adult"
## [217] "adult" "adult" "adult" "adult" "child" "adult" "adult" NA "adult"
## [226] "adult" "adult" "adult" NA NA "adult" "adult" "adult" "child"
## [235] "adult" NA "adult" "child" "adult" "adult" NA NA "adult"
## [244] "adult" "adult" "adult" "adult" "adult" "adult" "adult" NA "adult"
## [253] "adult" "adult" "adult" "adult" NA "adult" "adult" "adult" NA
## [262] "child" "adult" "adult" NA "adult" "child" "adult" "adult" "adult"
## [271] NA "adult" "adult" "adult" NA "adult" "adult" NA "child"
## [280] "adult" "adult" "adult" "child" "adult" NA "adult" "adult" "adult"
## [289] "adult" "adult" "adult" "adult" "adult" "adult" "adult" NA "adult"
## [298] "child" NA "adult" NA NA "adult" NA NA "child"
## [307] NA "child" "adult" "adult" "adult" NA "adult" "adult" "adult"
## [316] "adult" "adult" "adult" "adult" "adult" "adult" "adult" "adult" "adult"
## [325] NA "adult" "adult" "adult" "adult" "child" NA "adult" "adult"
## [334] "child" NA NA "adult" "adult" "adult" "adult" "child" "adult"
## [343] "adult" "adult" "adult" "adult" "adult" NA "child" "adult" "adult"
## [352] NA "child" "adult" NA "adult" "adult" "adult" NA NA
## [361] "adult" "adult" "adult" "adult" NA "adult" "adult" NA NA
## [370] "adult" "adult" NA "adult" "adult" "child" NA "adult" "adult"
## [379] "adult" "adult" "adult" "child" "adult" "adult" NA NA "child"
## [388] "adult" NA "child" "adult" "adult" "adult" "adult" "adult" "adult"
## [397] "adult" "adult" "adult" "adult" "adult" "adult" "adult" "adult" "adult"
## [406] "adult" "adult" "child" "adult" NA NA NA "adult" NA
## [415] "adult" NA "adult" NA "adult" "child" NA "adult" "adult"
## [424] "adult" NA NA "adult" "adult" NA "adult" "adult" NA
## [433] "adult" "child" "adult" "child" "adult" "adult" "adult" "adult" "adult"
## [442] "adult" "adult" "adult" NA "child" "child" "adult" "child" "adult"
## [451] "adult" NA "adult" "adult" NA "adult" "adult" NA "adult"
## [460] NA "adult" "adult" "adult" "adult" NA "adult" NA "adult"
## [469] NA "child" NA "adult" "adult" "adult" "adult" NA "adult"
## [478] "adult" "adult" "child" "child" NA "adult" "adult" "adult" NA
## [487] "adult" "adult" "adult" "child" NA "adult" "adult" "adult" "adult"
## [496] NA "adult" NA "adult" "adult" "child" "adult" NA "adult"
## [505] "child" NA "adult" NA "adult" "adult" "adult" NA "adult"
## [514] "adult" "adult" "adult" "adult" NA "adult" "adult" "adult" "adult"
## [523] NA "adult" NA "adult" "adult" NA "adult" "adult" "child"
## [532] NA "child" NA "adult" "child" "adult" "adult" NA "adult"
## [541] "adult" "child" "child" "adult" "adult" "adult" "adult" NA "adult"
## [550] "child" "child" "adult" NA "adult" "adult" "adult" "adult" NA
## [559] "adult" "adult" NA "adult" "adult" NA NA "adult" "adult"
## [568] "adult" NA "adult" "adult" "adult" "adult" NA "child" "adult"
## [577] "adult" "adult" NA "adult" "adult" "adult" "adult" "adult" NA
## [586] NA "adult" "adult" "adult" NA "adult" "adult" "adult" NA
## [595] "adult" "adult" NA "adult" NA "adult" "adult" NA NA
## [604] "adult" "adult" "adult" "adult" "adult" "adult" "adult" "adult" NA
## [613] NA NA "adult" "adult" "adult" "adult" "child" "adult" "adult"
## [622] "adult" "adult" "adult" "adult" "adult" "adult" "adult" "adult" NA
## [631] "adult" "adult" "adult" NA "child" "adult" "adult" "adult" "adult"
## [640] NA "adult" "adult" "child" NA "child" "adult" "adult" "adult"
## [649] NA "adult" NA NA "adult" NA NA "adult" NA
## [658] "adult" "adult" "adult" "adult" "adult" "adult" "adult" "adult" "adult"
## [667] "adult" NA "adult" NA "adult" "adult" "adult" "adult" NA
## [676] NA "adult" NA "adult" "adult" NA "adult" "adult" "child"
## [685] "adult" "adult" "child" "adult" NA "child" "adult" "child" NA
## [694] "adult" "adult" "adult" "adult" NA "adult" "adult" NA "adult"
## [703] NA "adult" "adult" "adult" "adult" "adult" "adult" NA "adult"
## [712] NA "adult" "adult" "adult" "adult" "adult" "adult" NA "adult"
## [721] "child" "child" "adult" "adult" "adult" "adult" "adult" NA "adult"
## [730] "adult" "adult" "child" NA "adult" "adult" "adult" "adult" "adult"
## [739] NA NA NA "adult" "adult" "adult" "adult" "adult" "child"
## [748] "adult" "adult" "adult" "child" "child" "adult" "adult" "adult" "child"
## [757] "adult" NA "adult" "adult" NA "adult" "adult" "adult" "child"
## [766] "adult" NA "adult" NA "adult" "adult" "adult" "adult" NA
## [775] "adult" NA NA "child" NA "adult" "child" "child" "adult"
## [784] NA "adult" "adult" NA "child" "child" "adult" NA "child"
## [793] NA NA "adult" "adult" "adult" "adult" "adult" "adult" "adult"
## [802] "adult" "child" "child" "adult" "adult" "adult" NA "adult" "adult"
## [811] "adult" "adult" "adult" "child" "adult" NA "adult" "adult" "adult"
## [820] "child" "adult" "adult" "adult" "adult" "child" NA NA "child"
## [829] NA "adult" "child" "child" NA "adult" NA "adult" "adult"
## [838] NA "adult" NA "adult" "child" "adult" "adult" "child" "adult"
## [847] NA "adult" "adult" NA "child" "adult" "child" "child" "adult"
## [856] NA "adult" "adult" "adult" NA "adult" "adult" "adult" NA
## [865] "adult" "adult" "adult" "adult" NA "child" "adult" "adult" "adult"
## [874] "adult" "adult" "child" "adult" "adult" NA "adult" "adult" "adult"
## [883] "adult" "adult" "adult" "adult" "adult" "adult" NA "adult" "adult"
library(dplyr)
df$Embarked2 <- case_when(df$Embarked %in% c('Q', 'C') ~ 'Europe',
df$Embarked %in% c('S') ~ 'England')
df$Embarked2
## [1] "England" "Europe" "England" "England" "England" "Europe" "England"
## [8] "England" "England" "Europe" "England" "England" "England" "England"
## [15] "England" "England" "Europe" "England" "England" "Europe" "England"
## [22] "England" "Europe" "England" "England" "England" "Europe" "England"
## [29] "Europe" "England" "Europe" "Europe" "Europe" "England" "Europe"
## [36] "England" "Europe" "England" "England" "Europe" "England" "England"
## [43] "Europe" "Europe" "Europe" "England" "Europe" "Europe" "Europe"
## [50] "England" "England" "England" "Europe" "England" "Europe" "England"
## [57] "England" "Europe" "England" "England" "Europe" NA "England"
## [64] "England" "Europe" "Europe" "England" "England" "England" "England"
## [71] "England" "England" "England" "Europe" "England" "England" "England"
## [78] "England" "England" "England" "England" "England" "Europe" "England"
## [85] "England" "England" "England" "England" "England" "England" "England"
## [92] "England" "England" "England" "England" "England" "Europe" "Europe"
## [99] "England" "England" "England" "England" "England" "England" "England"
## [106] "England" "England" "England" "England" "Europe" "England" "Europe"
## [113] "England" "England" "Europe" "England" "Europe" "England" "Europe"
## [120] "England" "England" "England" "Europe" "England" "England" "Europe"
## [127] "Europe" "England" "Europe" "England" "Europe" "England" "England"
## [134] "England" "England" "Europe" "England" "England" "England" "Europe"
## [141] "Europe" "England" "England" "Europe" "England" "England" "England"
## [148] "England" "England" "England" "England" "England" "England" "England"
## [155] "England" "Europe" "Europe" "England" "England" "England" "England"
## [162] "England" "England" "England" "England" "England" "England" "England"
## [169] "England" "England" "England" "Europe" "England" "England" "Europe"
## [176] "England" "England" "Europe" "England" "England" "England" "Europe"
## [183] "England" "England" "England" "England" "Europe" "England" "Europe"
## [190] "England" "England" "England" "England" "England" "Europe" "Europe"
## [197] "Europe" "England" "Europe" "England" "England" "England" "England"
## [204] "Europe" "England" "England" "England" "Europe" "Europe" "Europe"
## [211] "England" "England" "England" "England" "Europe" "Europe" "England"
## [218] "England" "Europe" "England" "England" "England" "England" "England"
## [225] "England" "England" "England" "England" "England" "England" "England"
## [232] "England" "England" "England" "England" "England" "England" "England"
## [239] "England" "England" "Europe" "Europe" "England" "England" "Europe"
## [246] "Europe" "England" "England" "England" "England" "England" "England"
## [253] "England" "England" "England" "Europe" "Europe" "England" "Europe"
## [260] "England" "Europe" "England" "England" "England" "Europe" "England"
## [267] "England" "England" "England" "England" "England" "England" "England"
## [274] "Europe" "Europe" "England" "England" "England" "Europe" "England"
## [281] "Europe" "England" "England" "England" "England" "Europe" "England"
## [288] "England" "England" "Europe" "England" "Europe" "Europe" "England"
## [295] "England" "Europe" "Europe" "England" "England" "Europe" "Europe"
## [302] "Europe" "England" "Europe" "England" "England" "Europe" "Europe"
## [309] "Europe" "Europe" "Europe" "Europe" "England" "England" "England"
## [316] "England" "England" "England" "England" "Europe" "England" "England"
## [323] "Europe" "England" "England" "Europe" "England" "England" "England"
## [330] "Europe" "Europe" "England" "England" "England" "England" "England"
## [337] "England" "Europe" "England" "England" "England" "England" "England"
## [344] "England" "England" "England" "England" "England" "England" "England"
## [351] "England" "England" "Europe" "England" "Europe" "England" "England"
## [358] "England" "Europe" "Europe" "England" "Europe" "Europe" "England"
## [365] "Europe" "England" "Europe" "Europe" "Europe" "Europe" "Europe"
## [372] "England" "England" "Europe" "England" "Europe" "England" "Europe"
## [379] "Europe" "England" "Europe" "Europe" "England" "England" "England"
## [386] "England" "England" "England" "Europe" "Europe" "England" "England"
## [393] "England" "Europe" "England" "England" "England" "England" "England"
## [400] "England" "England" "England" "England" "England" "England" "England"
## [407] "England" "England" "England" "England" "England" "Europe" "Europe"
## [414] "England" "England" "England" "England" "England" "England" "England"
## [421] "Europe" "Europe" "England" "England" "England" "England" "England"
## [428] "England" "Europe" "England" "England" "England" "England" "England"
## [435] "England" "England" "England" "England" "England" "England" "England"
## [442] "England" "England" "England" "England" "England" "England" "England"
## [449] "Europe" "England" "England" "England" "Europe" "Europe" "England"
## [456] "Europe" "England" "England" "England" "Europe" "England" "England"
## [463] "England" "England" "England" "England" "England" "England" "Europe"
## [470] "Europe" "England" "England" "England" "Europe" "England" "England"
## [477] "England" "England" "England" "England" "England" "England" "England"
## [484] "England" "Europe" "England" "England" "Europe" "England" "England"
## [491] "England" "England" "England" "Europe" "England" "Europe" "Europe"
## [498] "England" "England" "England" "England" "Europe" "Europe" "England"
## [505] "England" "Europe" "England" "England" "England" "England" "Europe"
## [512] "England" "England" "Europe" "England" "England" "England" "Europe"
## [519] "England" "England" "England" "England" "Europe" "Europe" "Europe"
## [526] "Europe" "England" "England" "England" "England" "England" "Europe"
## [533] "Europe" "Europe" "England" "England" "England" "Europe" "England"
## [540] "Europe" "England" "England" "England" "England" "Europe" "England"
## [547] "England" "Europe" "England" "England" "Europe" "England" "Europe"
## [554] "Europe" "England" "England" "Europe" "Europe" "England" "England"
## [561] "Europe" "England" "England" "England" "England" "England" "England"
## [568] "England" "Europe" "England" "England" "England" "England" "Europe"
## [575] "England" "England" "England" "England" "Europe" "England" "England"
## [582] "Europe" "England" "Europe" "Europe" "England" "England" "Europe"
## [589] "England" "England" "England" "Europe" "England" "Europe" "England"
## [596] "England" "England" "England" "Europe" "Europe" "England" "England"
## [603] "England" "England" "Europe" "England" "England" "England" "Europe"
## [610] "England" "England" "England" "Europe" "Europe" "England" "England"
## [617] "England" "England" "England" "England" "Europe" "England" "Europe"
## [624] "England" "England" "England" "Europe" "England" "England" "Europe"
## [631] "England" "England" "Europe" "England" "England" "England" "England"
## [638] "England" "England" "England" "England" "Europe" "England" "England"
## [645] "Europe" "Europe" "England" "Europe" "England" "England" "England"
## [652] "England" "England" "Europe" "Europe" "England" "England" "Europe"
## [659] "England" "Europe" "England" "Europe" "England" "England" "England"
## [666] "England" "England" "England" "England" "England" "England" "England"
## [673] "England" "England" "England" "England" "England" "England" "England"
## [680] "Europe" "Europe" "Europe" "England" "England" "England" "Europe"
## [687] "England" "England" "England" "England" "England" "Europe" "England"
## [694] "Europe" "England" "England" "England" "Europe" "Europe" "England"
## [701] "Europe" "England" "Europe" "Europe" "England" "England" "England"
## [708] "England" "England" "Europe" "Europe" "England" "England" "England"
## [715] "England" "England" "Europe" "England" "Europe" "England" "England"
## [722] "England" "England" "England" "England" "England" "England" "Europe"
## [729] "England" "England" "England" "Europe" "England" "England" "England"
## [736] "England" "England" "Europe" "England" "England" "England" "England"
## [743] "Europe" "England" "England" "England" "England" "England" "England"
## [750] "Europe" "England" "England" "England" "England" "England" "England"
## [757] "England" "England" "England" "England" "England" "England" "Europe"
## [764] "England" "England" "England" "Europe" "Europe" "Europe" "England"
## [771] "England" "England" "England" "Europe" "England" "England" "Europe"
## [778] "England" "Europe" "England" "Europe" "England" "England" "England"
## [785] "England" "England" "England" "Europe" "England" "Europe" "Europe"
## [792] "England" "England" "Europe" "England" "England" "England" "England"
## [799] "Europe" "England" "England" "England" "England" "Europe" "England"
## [806] "England" "England" "England" "England" "England" "England" "England"
## [813] "England" "England" "England" "England" "England" "Europe" "England"
## [820] "England" "England" "England" "England" "England" "England" "Europe"
## [827] "England" "Europe" "Europe" NA "Europe" "England" "Europe"
## [834] "England" "England" "Europe" "England" "England" "England" "Europe"
## [841] "England" "England" "Europe" "Europe" "England" "England" "England"
## [848] "Europe" "England" "Europe" "England" "England" "Europe" "England"
## [855] "England" "England" "England" "England" "Europe" "Europe" "England"
## [862] "England" "England" "England" "England" "England" "Europe" "England"
## [869] "England" "England" "England" "England" "England" "England" "Europe"
## [876] "Europe" "England" "England" "England" "Europe" "England" "England"
## [883] "England" "England" "England" "Europe" "England" "England" "England"
## [890] "Europe" "Europe"
If you do not have a data, you can use the titanic dataset, which can be downloaded at this link